Some tweaks, made libutil a bit more complete.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19487 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2006-12-13 13:06:42 +00:00
parent 5782c5a3e2
commit 9d6d3fcf5f
4 changed files with 6 additions and 2 deletions

View File

@ -49,8 +49,6 @@
#include <sys/types.h>
#define __dead2
#define __printflike(a, b)
#define __printf0like(a, b)
#define __va_list va_list
__BEGIN_DECLS

View File

@ -40,6 +40,7 @@
#define _LIBUTIL_H_
#include <stdint.h>
#include <sys/types.h>
#define PROPERTY_MAX_NAME 64
#define PROPERTY_MAX_VALUE 512

View File

@ -13,4 +13,7 @@
#define __unused
#define protected
#define __printflike(a, b) __attribute__ ((format (__printf__, (a), (b))))
#define __printf0like(a, b)
#endif /* _BSD_SYS_CDEFS_H_ */

View File

@ -9,5 +9,7 @@ SubDirCcFlags $(defines) ;
StaticLibrary libutil.a :
fparseln.c
realhostname.c
trimdomain.c
;