aboutsummaryrefslogtreecommitdiff
path: root/notes.md
diff options
context:
space:
mode:
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