aboutsummaryrefslogtreecommitdiff
path: root/readline/sysdep-norm.h
diff options
context:
space:
mode:
authorElena Zannoni <ezannoni@kwikemart.cygnus.com>1998-12-22 21:53:33 +0000
committerElena Zannoni <ezannoni@kwikemart.cygnus.com>1998-12-22 21:53:33 +0000
commit329d0a370243f8e113074dc60f3e8b5917005307 (patch)
tree880e39a7fc5884111f26e10dd0c79f000878a6f6 /readline/sysdep-norm.h
parent1ec3146a4472e7ecd9525bdec1a9eaee1e93d76f (diff)
downloadgdb-329d0a370243f8e113074dc60f3e8b5917005307.zip
gdb-329d0a370243f8e113074dc60f3e8b5917005307.tar.gz
gdb-329d0a370243f8e113074dc60f3e8b5917005307.tar.bz2
Tue Dec 22 10:07:58 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of Readline 2.2.1.
Diffstat (limited to 'readline/sysdep-norm.h')
-rw-r--r--readline/sysdep-norm.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/readline/sysdep-norm.h b/readline/sysdep-norm.h
deleted file mode 100644
index 6cf1f34..0000000
--- a/readline/sysdep-norm.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/* System-dependent stuff, for ``normal'' systems */
-/* If you think you need to change this file, then you are wrong. In order to
- avoid a huge ugly mass of nested #ifdefs, you should create a new file just
- for your system, which contains exactly those #includes and definitions that
- your system needs, AND NOTHING MORE! Then, add that file to the appropriate
- place in configure.in, and viola, you are done. sysdep-sunos4.h is a good
- example of how to do this. */
-
-#ifdef __GNUC__
-#define alloca __builtin_alloca
-#else
-#if defined (sparc) && defined (sun)
-#include <alloca.h>
-#endif
-#ifndef alloca /* May be a macro, with args. */
-extern char *alloca ();
-#endif
-#endif
-
-#include <sys/types.h> /* Needed by dirent.h */
-
-#if defined (USG) && defined (TIOCGWINSZ)
-#include <sys/stream.h>
-#if defined (USGr4) || defined (USGr3)
-#include <sys/ptem.h>
-#endif /* USGr4 */
-#endif /* USG && TIOCGWINSZ */
-
-#ifndef _WIN32
-#include <dirent.h>
-typedef struct dirent dirent;
-#endif
-
-/* SVR4 systems should use <termios.h> rather than <termio.h>. */
-
-#if defined (USGr4)
-#define _POSIX_VERSION
-#endif
-
-#if defined _WIN32 && !defined __GNUC__
-#include <malloc.h>
-#endif