]> de.git.xonotic.org Git - xonotic/d0_blind_id.git/blob - d0.h
more bugfixes, SSL variant works now
[xonotic/d0_blind_id.git] / d0.h
1 #ifndef __D0_H__
2 #define __D0_H__
3
4 #include <unistd.h> // size_t
5
6 #define EXPORT __attribute__((__visibility__("default")))
7 #define WARN_UNUSED_RESULT __attribute__((warn_unused_result))
8 #define BOOL int
9
10 extern void *(*d0_malloc)(size_t len);
11 extern void (*d0_free)(void *p);
12
13 #endif