libu.h
00001
00002
00003
00004
00005 #ifndef _U_LIBU_H_
00006 #define _U_LIBU_H_
00007
00008 #include <u/libu_conf.h>
00009
00010 #include <stdio.h>
00011
00012 #ifdef HAVE_STDLIB
00013 #include <stdlib.h>
00014 #endif
00015
00016
00017 #if defined(__GNUC__) && ((__GNUC__ >= 4) || \
00018 ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 1)))
00019 #define __LIBU_DEPRECATED __attribute__((deprecated))
00020 #else
00021 #define __LIBU_DEPRECATED
00022 #endif
00023
00024 #include <u/missing.h>
00025 #include <u/toolbox.h>
00026 #include <u/compat.h>
00027
00028 #endif