summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRandolph Chung <tausq@debian.org>2000-07-09 03:07:42 +0000
committerRandolph Chung <tausq@debian.org>2000-07-09 03:07:42 +0000
commit986ea00a8cbe68e3670ff885c969e201e47b0a95 (patch)
treea9b8dc8481bb0b20dab6bd7e337526bacd51e114
parent7513fde29d278751593c6d3130d25c3c773acccb (diff)
misc net fixes for building....
-rw-r--r--Makefile5
-rw-r--r--include/limits.h5
-rw-r--r--include/termios.h3
3 files changed, 6 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 15d2461d6..98807e360 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-DIRS = headers error getent malloc-simple misc net regexp stdio2 \
+DIRS = headers error getent malloc-simple misc regexp stdio2 \
string sysdeps termios time #rpc
all: libc.a
@@ -50,6 +50,9 @@ termios: dummy
time: dummy
make -C time
+tags:
+ ctags -R
+
dummy:
clean:
diff --git a/include/limits.h b/include/limits.h
index 21520f3c9..39ff69778 100644
--- a/include/limits.h
+++ b/include/limits.h
@@ -45,10 +45,6 @@
#define MB_LEN_MAX 6
-/* If we are not using GNU CC we have to define all the symbols ourself.
- Otherwise use gcc's definitions (see below). */
-#if !defined __GNUC__ || __GNUC__ < 2
-
/* We only protect from multiple inclusion here, because all the other
#include's protect themselves, and in GCC 2 we may #include_next through
multiple copies of this file before we get to GCC's. */
@@ -118,7 +114,6 @@
# endif
# endif /* limits.h */
-#endif /* GCC 2. */
#endif /* !_LIBC_LIMITS_H_ */
diff --git a/include/termios.h b/include/termios.h
index 8dcb5bc5e..014e5c957 100644
--- a/include/termios.h
+++ b/include/termios.h
@@ -3,7 +3,8 @@
#include <features.h>
#include <sys/types.h>
-#include <linux/termios.h>
+#include <sys/termios.h>
+#include <asm/termbits.h>
extern speed_t cfgetispeed __P ((struct termios *__termios_p));
extern speed_t cfgetospeed __P ((struct termios *__termios_p));