aboutsummaryrefslogtreecommitdiffstats
path: root/xlib.h
diff options
context:
space:
mode:
authorNatanael Copa <natanael.copa@gmail.com>2008-12-18 21:22:55 +0100
committerNatanael Copa <natanael.copa@gmail.com>2008-12-18 21:22:55 +0100
commit8377d611fc80fc0d9e498d958c40fce59f3f29e1 (patch)
tree201010526cf2d6d8036cb9f6334043a9e8d51171 /xlib.h
parent518df3c6280fa4829d6e389da6ade6a025c2e6c0 (diff)
downloadpingu-8377d611fc80fc0d9e498d958c40fce59f3f29e1.tar.bz2
pingu-8377d611fc80fc0d9e498d958c40fce59f3f29e1.tar.xz
xlib.c: moved utility funcs to separate file
Diffstat (limited to 'xlib.h')
-rw-r--r--xlib.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/xlib.h b/xlib.h
new file mode 100644
index 0000000..e6f9e16
--- /dev/null
+++ b/xlib.h
@@ -0,0 +1,8 @@
+#ifndef XLIB_H
+#define XLIB_H
+
+void *xmalloc(size_t size);
+void *xrealloc(void *ptr, size_t size);
+char *xstrdup(const char *str);
+
+#endif