diff options
author | nobody <nobody@localhost> | 1999-12-25 14:31:23 +0000 |
---|---|---|
committer | nobody <nobody@localhost> | 1999-12-25 14:31:23 +0000 |
commit | 8c7127454525530f0c6236c581c8c7bc476745de (patch) | |
tree | 7d0d3756e5b4657c67be691910240a559b06c3cc /support/system.h | |
parent | d13f9d91ab9298f4430b5d8198bf6a1bb98db585 (diff) | |
download | gnome-common-STABLE.tar.gz |
This commit was manufactured by cvs2svn to create tag 'STABLE'.STABLE
svn path=/tags/STABLE/; revision=1051
Diffstat (limited to 'support/system.h')
-rw-r--r-- | support/system.h | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/support/system.h b/support/system.h deleted file mode 100644 index 0f888f4..0000000 --- a/support/system.h +++ /dev/null @@ -1,55 +0,0 @@ -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include <ctype.h> -#include <errno.h> -#include <fcntl.h> -#include <limits.h> - -#if HAVE_MCHECK_H -#include <mcheck.h> -#endif - -#include <stdio.h> -#include <stdlib.h> -#include <string.h> - -#if HAVE_UNISTD_H -#include <unistd.h> -#endif - -#ifdef __NeXT -/* access macros are not declared in non posix mode in unistd.h - - don't try to use posix on NeXTstep 3.3 ! */ -#include <libc.h> -#endif - -/* AIX requires this to be the first thing in the file. */ -#ifndef __GNUC__ -# if HAVE_ALLOCA_H -# include <alloca.h> -# else -# ifdef _AIX -#pragma alloca -# else -# ifndef alloca /* predefined by HP cc +Olibcalls */ -char *alloca (); -# endif -# endif -# endif -#elif defined(__GNUC__) && defined(__STRICT_ANSI__) -#define alloca __builtin_alloca -#endif - -/*@only@*/ char * xstrdup (const char *str); - -#if HAVE_MCHECK_H && defined(__GNUC__) -#define vmefail() (fprintf(stderr, "virtual memory exhausted.\n"), exit(EXIT_FAILURE), NULL) -#define xstrdup(_str) (strcpy((malloc(strlen(_str)+1) ? : vmefail()), (_str))) -#else -#define xstrdup(_str) strdup(_str) -#endif /* HAVE_MCHECK_H && defined(__GNUC__) */ - - -#include "popt-gnome.h" |