aboutsummaryrefslogtreecommitdiff
path: root/notes.md
diff options
context:
space:
mode:
authorNicholas Hall <ngh@grandcare.com>2017-09-14 16:42:29 -0500
committerNicholas Hall <ngh@grandcare.com>2017-09-14 16:42:29 -0500
commit52e3ab594b34bf309b8669fcaa855c295a00e114 (patch)
tree464216f7987f6df92d7c2c85bf3d398ef32189ea /notes.md
downloadhooking_strcmp-52e3ab594b34bf309b8669fcaa855c295a00e114.tar.xz
hooking_strcmp-52e3ab594b34bf309b8669fcaa855c295a00e114.zip
DC414 meeting presentation filesHEADmaster
Diffstat (limited to 'notes.md')
-rw-r--r--notes.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/notes.md b/notes.md
new file mode 100644
index 0000000..b7a6116
--- /dev/null
+++ b/notes.md
@@ -0,0 +1,13 @@
+# presentation software
+sent - Simple plaintext presentation tool.
+https://tools.suckless.org/sent/
+
+# glibc version
+ldd --version
+
+# glibc source
+git://sourceware.org/git/glibc.git
+
+# compile as shared object
+gcc -fPIC -c strcmp.c -o strcmp.o
+gcc -shared -o strcmp.so strcmp.o