mirror of
https://gitlab.com/xonotic/xonotic
synced 2025-02-09 06:56:51 +00:00
14 lines
285 B
C
14 lines
285 B
C
#ifndef __D0_H__
|
|
#define __D0_H__
|
|
|
|
#include <unistd.h> // size_t
|
|
|
|
#define EXPORT __attribute__((__visibility__("default")))
|
|
#define WARN_UNUSED_RESULT __attribute__((warn_unused_result))
|
|
#define BOOL int
|
|
|
|
extern void *(*d0_malloc)(size_t len);
|
|
extern void (*d0_free)(void *p);
|
|
|
|
#endif
|