R3_LIST_H

This commit is contained in:
c9s 2014-05-22 22:22:03 +08:00
parent 5a10c82ea5
commit 288cdc91dd
2 changed files with 6 additions and 6 deletions

View file

@ -2,7 +2,7 @@
/* config.h.in. Generated from configure.ac by autoheader. */ /* config.h.in. Generated from configure.ac by autoheader. */
/* "whether graphviz is enable" */ /* "whether graphviz is enable" */
#define ENABLE_GRAPHVIZ test "x$enable_graphviz" == "xyes" #define ENABLE_GRAPHVIZ test "x$enable_graphviz" = "xyes"
/* Define to 1 if you have the <dlfcn.h> header file. */ /* Define to 1 if you have the <dlfcn.h> header file. */
#define HAVE_DLFCN_H 1 #define HAVE_DLFCN_H 1
@ -94,8 +94,8 @@
/* Define to 1 if you have the ANSI C header files. */ /* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1 #define STDC_HEADERS 1
/* "use jemalloc" */ /* Define to 1 if you have the PATH_MAX macro. */
#define USE_JEMALLOC test "x$found_jemalloc" = "xyes" /* #undef USE_JEMALLOC */
/* Version number of package */ /* Version number of package */
#define VERSION "1.0.0" #define VERSION "1.0.0"

View file

@ -5,8 +5,8 @@
* Distributed under terms of the MIT license. * Distributed under terms of the MIT license.
*/ */
#ifndef LIST_H #ifndef R3_LIST_H
#define LIST_H #define R3_LIST_H
#include <pthread.h> #include <pthread.h>
@ -32,4 +32,4 @@ void list_each_element(list *l, int (*func)(list_item *));
#endif /* !LIST_H */ #endif /* !R3_LIST_H */