Deleted Added
full compact
xtime.h (81404) xtime.h (175261)
1/* This program is free software; you can redistribute it and/or modify
2 it under the terms of the GNU General Public License as published by
3 the Free Software Foundation; either version 2, or (at your option)
4 any later version.
5
6 This program is distributed in the hope that it will be useful,
7 but WITHOUT ANY WARRANTY; without even the implied warranty of
8 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 GNU General Public License for more details. */
10
11/* This file simply performs the include magic necessary for using time
12 * functions
13 */
1/* This program is free software; you can redistribute it and/or modify
2 it under the terms of the GNU General Public License as published by
3 the Free Software Foundation; either version 2, or (at your option)
4 any later version.
5
6 This program is distributed in the hope that it will be useful,
7 but WITHOUT ANY WARRANTY; without even the implied warranty of
8 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 GNU General Public License for more details. */
10
11/* This file simply performs the include magic necessary for using time
12 * functions
13 */
14#ifndef XTIME_HEADER_INCLUDED
15#define XTIME_HEADER_INCLUDED
14
15#ifdef vms
16# include <time.h>
17#else /* vms */
18
19# if TIME_WITH_SYS_TIME
20# include <sys/time.h>
21# include <time.h>

--- 28 unchanged lines hidden (view full) ---

50# undef timezone /* needed for sgi */
51# endif /* timezone */
52
53# if !defined(HAVE_FTIME) && !defined(HAVE_TIMEZONE)
54extern long timezone;
55# endif /* !defined(HAVE_FTIME) && !defined(HAVE_TIMEZONE) */
56
57#endif /* !vms */
16
17#ifdef vms
18# include <time.h>
19#else /* vms */
20
21# if TIME_WITH_SYS_TIME
22# include <sys/time.h>
23# include <time.h>

--- 28 unchanged lines hidden (view full) ---

52# undef timezone /* needed for sgi */
53# endif /* timezone */
54
55# if !defined(HAVE_FTIME) && !defined(HAVE_TIMEZONE)
56extern long timezone;
57# endif /* !defined(HAVE_FTIME) && !defined(HAVE_TIMEZONE) */
58
59#endif /* !vms */
60
61#endif /* !XTIME_HEADER_INCLUDED */