diff options
author | james <> | 2008-02-03 16:20:24 +0000 |
---|---|---|
committer | james <> | 2008-02-03 16:20:24 +0000 |
commit | 4163308ecae26c76d22e4cc80d8bae729b06b94f (patch) | |
tree | 5d72762d62aaf3e8843123a967280623e3bd0f64 /src/project.h | |
download | sympathy-4163308ecae26c76d22e4cc80d8bae729b06b94f.tar.gz sympathy-4163308ecae26c76d22e4cc80d8bae729b06b94f.tar.bz2 sympathy-4163308ecae26c76d22e4cc80d8bae729b06b94f.zip |
*** empty log message ***
Diffstat (limited to 'src/project.h')
-rw-r--r-- | src/project.h | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/src/project.h b/src/project.h new file mode 100644 index 0000000..079f38a --- /dev/null +++ b/src/project.h @@ -0,0 +1,65 @@ +/* + * project.h: + * + * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>, + * All rights reserved. + * + */ + +/* + * $Id$ + */ + +/* + * $Log$ + * Revision 1.1 2008/02/03 16:20:24 james + * *** empty log message *** + * + * + */ + +#ifndef __PROJECT_H__ +#define __PROJECT_H__ + +#include "config.h" + +#ifdef TM_IN_SYS_TIME +#include <sys/time.h> +#ifdef TIME_WITH_SYS_TIME +#include <time.h> +#endif +#else +#ifdef TIME_WITH_SYS_TIME +#include <sys/time.h> +#endif +#include <time.h> +#endif + +#include <stdio.h> +#include <stdlib.h> + +#ifdef HAVE_MALLOC_H +#include <malloc.h> +#endif + +#ifdef HAVE_STRING_H +#include <string.h> +#endif + +#ifdef HAVE_STRINGS_H +#include <strings.h> +#endif + +#ifdef HAVE_UNISTD_H +#include <unistd.h> +#endif + +#if defined(HAVE_STDINT_H) +#include <stdint.h> +#elif defined(HAVE_SYS_INT_TYPES_H) +#include <sys/int_types.h> +#endif + +#include "prototypes.h" + +#endif /* __PROJECT_H__ */ |