sys_times, sys_utsname: use include_next
[gnulib.git] / lib / sys_times.in.h
1 /* Provide a sys/times.h header file.
2    Copyright (C) 2008-2009 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2, or (at your option)
7    any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software Foundation,
16    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
17
18 /* Written by Simon Josefsson <simon@josefsson.org>, 2008.  */
19
20 /* This file is supposed to be used on platforms where <sys/times.h>
21    is missing.  */
22
23 #ifndef _GL_SYS_TIMES_H
24
25 # if __GNUC__ >= 3
26 @PRAGMA_SYSTEM_HEADER@
27 # endif
28
29 # if @HAVE_SYS_TIMES_H@
30 #  @INCLUDE_NEXT@ @NEXT_SYS_TIMES_H@
31 # endif
32
33 # define _GL_SYS_TIMES_H
34
35 /* Get clock_t. */
36 # include <time.h>
37
38 /* The definition of GL_LINK_WARNING is copied here.  */
39
40 /* The definition of _GL_ARG_NONNULL is copied here.  */
41
42 # ifdef __cplusplus
43 extern "C" {
44 # endif
45
46 # if !@HAVE_STRUCT_TMS@
47   /* Structure describing CPU time used by a process and its children.  */
48   struct tms
49   {
50     clock_t tms_utime;          /* User CPU time.  */
51     clock_t tms_stime;          /* System CPU time.  */
52
53     clock_t tms_cutime;         /* User CPU time of dead children.  */
54     clock_t tms_cstime;         /* System CPU time of dead children.  */
55   };
56 # endif
57
58 # if @GNULIB_TIMES@
59 #  if !@HAVE_TIMES@
60   extern clock_t times (struct tms *buffer) _GL_ARG_NONNULL ((1));
61 #  endif
62 # elif defined GNULIB_POSIXCHECK
63 #  undef times
64 #  define times(s)                                              \
65   (GL_LINK_WARNING ("times is unportable - "                    \
66                     "use gnulib module times for portability"), \
67    times (s))
68 # endif
69
70 # ifdef __cplusplus
71 }
72 # endif
73
74 #endif                          /* _GL_SYS_TIMES_H */