diff options
author | Mathieu Sauve-Frankel <msf@cvs.openbsd.org> | 2004-06-25 05:06:50 +0000 |
---|---|---|
committer | Mathieu Sauve-Frankel <msf@cvs.openbsd.org> | 2004-06-25 05:06:50 +0000 |
commit | 1565c127b1bdcc74ee76a732acd8d8ea330dbce5 (patch) | |
tree | 21fe9a6b51d8c6d7e5161c2297283411c4d03377 /lib/libkeynote/keynote-ver.l | |
parent | 9bd8fd0c93dcd62158eebc119f2255df53ba1b8f (diff) |
Make crufty configure stuff go away. Remove all unused code paths.
No change in binaries.
ok millert@ deraadt@ hshoexer@
Diffstat (limited to 'lib/libkeynote/keynote-ver.l')
-rw-r--r-- | lib/libkeynote/keynote-ver.l | 26 |
1 files changed, 4 insertions, 22 deletions
diff --git a/lib/libkeynote/keynote-ver.l b/lib/libkeynote/keynote-ver.l index 5b1e749e5a3..75d67c3a363 100644 --- a/lib/libkeynote/keynote-ver.l +++ b/lib/libkeynote/keynote-ver.l @@ -1,5 +1,5 @@ %{ -/* $OpenBSD: keynote-ver.l,v 1.12 2002/05/27 06:29:14 deraadt Exp $ */ +/* $OpenBSD: keynote-ver.l,v 1.13 2004/06/25 05:06:49 msf Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@dsl.cis.upenn.edu) * @@ -20,31 +20,13 @@ * PURPOSE. */ -#if HAVE_CONFIG_H -#include "config.h" -#endif /* HAVE_CONFIG_H */ - +#include <sys/time.h> #include <sys/types.h> -#include <ctype.h> -#if STDC_HEADERS +#include <ctype.h> #include <string.h> -#endif /* STDC_HEADERS */ - -#if HAVE_UNISTD_H -#include <unistd.h> -#endif /* HAVE_UNISTD_H */ - -#if TIME_WITH_SYS_TIME -#include <sys/time.h> #include <time.h> -#else -#if HAVE_SYS_TIME_H -#include <sys/time.h> -#else -#include <time.h> -#endif -#endif +#include <unistd.h> #include "z.tab.h" #include "header.h" |