aboutsummaryrefslogtreecommitdiff
path: root/lib/include/syscalls.h
diff options
context:
space:
mode:
authorjohannst <johannes.stoelp@gmail.com>2021-03-26 23:17:46 +0100
committerjohannst <johannes.stoelp@gmail.com>2021-03-26 23:17:46 +0100
commit1d2a6f21294f8390b683e4e097cb49210ed832d1 (patch)
tree19f6854c3e1fa6a82ec4ed4bb57b2d3dadf979b8 /lib/include/syscalls.h
parentcf97ecd5b52c2f7a8953fd1674742d46fd15418a (diff)
downloaddynld-1d2a6f21294f8390b683e4e097cb49210ed832d1.tar.gz
dynld-1d2a6f21294f8390b683e4e097cb49210ed832d1.zip
Added dyn allocator + syscall wrappers + minor fixes.
Diffstat (limited to 'lib/include/syscalls.h')
-rw-r--r--lib/include/syscalls.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/include/syscalls.h b/lib/include/syscalls.h
new file mode 100644
index 0000000..34b6b37
--- /dev/null
+++ b/lib/include/syscalls.h
@@ -0,0 +1,23 @@
+// Copyright (c) 2021 Johannes Stoelp
+
+#pragma once
+
+#include <stddef.h> // size_t
+#include <sys/types.h> // ssize_t, off_t, ...
+
+// Syscall definitions taken from corresponding man pages, eg
+// open(2)
+// read(2)
+// ...
+
+#define O_RDONLY 00
+int open(const char* path, int flags);
+
+ssize_t read(int fd, void* buf, size_t count);
+
+#define SEEK_SET 0
+#define SEEK_CUR 1
+#define SEEK_END 2
+off_t lseek(int fd, off_t offset, int whence);
+
+void _exit(int status);