aboutsummaryrefslogtreecommitdiff
path: root/lib/include
diff options
context:
space:
mode:
authorjohannst <johannes.stoelp@gmail.com>2021-04-17 23:38:23 +0200
committerjohannst <johannes.stoelp@gmail.com>2021-04-17 23:38:23 +0200
commit9b4b10a31954c00813a7cbf9411d30bc84eccea8 (patch)
treeb82ff5eaab73fd26cb6c5c22e73919fd53d21d8e /lib/include
parent1d2a6f21294f8390b683e4e097cb49210ed832d1 (diff)
downloaddynld-9b4b10a31954c00813a7cbf9411d30bc84eccea8.tar.gz
dynld-9b4b10a31954c00813a7cbf9411d30bc84eccea8.zip
add memset
Diffstat (limited to 'lib/include')
-rw-r--r--lib/include/common.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/lib/include/common.h b/lib/include/common.h
index 631c25f..1e48097 100644
--- a/lib/include/common.h
+++ b/lib/include/common.h
@@ -5,10 +5,13 @@
#include "io.h"
#include "syscalls.h"
-#define ERROR_ON(cond, fmt, ...) \
- do { \
- if ((cond)) { \
- efmt("%s:%d " fmt, __FILE__, __LINE__ __VA_OPT__(, ) __VA_ARGS__); \
- _exit(1); \
- } \
+#define ERROR_ON(cond, fmt, ...) \
+ do { \
+ if ((cond)) { \
+ efmt("%s:%d " fmt "\n", __FILE__, __LINE__, ##__VA_ARGS__); \
+ _exit(1); \
+ } \
} while (0)
+
+
+void* memset(void* s, int c, size_t n);