server/src/platform.h

19 lines
286 B
C
Raw Normal View History

#pragma once
2010-08-08 10:06:34 +02:00
#ifndef UNILIB_H
#define UNILIB_H
2010-08-08 10:06:34 +02:00
#define _POSIX_C_SOURCE 200809L
#ifndef MAX_PATH
# define MAX_PATH 4096
#endif
#define UNUSED_ARG(a) (void)(a)
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
#define MAX(a, b) (((a) > (b)) ? (a) : (b))
#define TOLUA_CAST (char*)
#endif