summaryrefslogtreecommitdiff
path: root/source4/popt/system.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2004-02-12 14:21:44 +0000
committerStefan Metzmacher <metze@samba.org>2004-02-12 14:21:44 +0000
commit6647ff74306dd6985c32c75b177707b5c60b23b3 (patch)
tree0f3536681c51fd7cd8df162e19e84604008853a7 /source4/popt/system.h
parente46d297083c6e656774d94bb8153334836a27937 (diff)
downloadsamba-6647ff74306dd6985c32c75b177707b5c60b23b3.tar.gz
samba-6647ff74306dd6985c32c75b177707b5c60b23b3.tar.bz2
samba-6647ff74306dd6985c32c75b177707b5c60b23b3.zip
move -lpopt replacement code from source/popt/* to source/lib/popt/*
metze (This used to be commit 9d1018557fdc51cada1ad082d85c0dc48e1b3072)
Diffstat (limited to 'source4/popt/system.h')
-rw-r--r--source4/popt/system.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/source4/popt/system.h b/source4/popt/system.h
deleted file mode 100644
index 059c045817..0000000000
--- a/source4/popt/system.h
+++ /dev/null
@@ -1,53 +0,0 @@
-#include "config.h"
-
-#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.h"