Mercurial > hg > octave-nkf > gnulib-hg
annotate tests/test-stdio.c @ 16817:7747cb9b54b9
unistd_h: make it easier to avoid sys_types_h
This is useful for Emacs, which has its own method of porting to
Windows, and which therefore does not need the sys_types_h module.
* m4/off_t.m4: New file, defining gl_TYPE_OFF_T, which contains
code moved here from gl_SYS_TYPES_H.
* m4/sys_types_h.m4 (gl_SYS_TYPES_H): Require it instead of
using the code directly.
* m4/unistd_h.m4 (gl_UNISTD_H): Require gl_TYPE_OFF_T, not
gl_SYS_TYPES_H.
* modules/sys_types (Files):
* modules/unistd (Files): Add m4/off_t.m4.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Fri, 04 May 2012 13:05:31 -0700 |
parents | 8250f2777afc |
children | e542fd46ad6f |
rev | line source |
---|---|
8212 | 1 /* Test of <stdio.h> substitute. |
16201
8250f2777afc
maint: update all copyright year number ranges
Jim Meyering <meyering@redhat.com>
parents:
14079
diff
changeset
|
2 Copyright (C) 2007, 2009-2012 Free Software Foundation, Inc. |
8212 | 3 |
9309
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
8706
diff
changeset
|
4 This program is free software: you can redistribute it and/or modify |
8212 | 5 it under the terms of the GNU General Public License as published by |
9309
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
8706
diff
changeset
|
6 the Free Software Foundation; either version 3 of the License, or |
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
8706
diff
changeset
|
7 (at your option) any later version. |
8212 | 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 | |
9309
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
8706
diff
changeset
|
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
8212 | 16 |
17 /* Written by Bruno Haible <bruno@clisp.org>, 2007. */ | |
18 | |
19 #include <config.h> | |
20 | |
21 #include <stdio.h> | |
22 | |
11658
8b1dcb465dff
tests: add test for bogus NULL definition
Eric Blake <ebb9@byu.net>
parents:
9309
diff
changeset
|
23 #include "verify.h" |
8b1dcb465dff
tests: add test for bogus NULL definition
Eric Blake <ebb9@byu.net>
parents:
9309
diff
changeset
|
24 |
8706
6241ddf70c2e
Ensure that <unistd.h> and <fcntl.h> define SEEK_CUR etc.
Bruno Haible <bruno@clisp.org>
parents:
8212
diff
changeset
|
25 /* Check that the various SEEK_* macros are defined. */ |
6241ddf70c2e
Ensure that <unistd.h> and <fcntl.h> define SEEK_CUR etc.
Bruno Haible <bruno@clisp.org>
parents:
8212
diff
changeset
|
26 int sk[] = { SEEK_CUR, SEEK_END, SEEK_SET }; |
6241ddf70c2e
Ensure that <unistd.h> and <fcntl.h> define SEEK_CUR etc.
Bruno Haible <bruno@clisp.org>
parents:
8212
diff
changeset
|
27 |
11658
8b1dcb465dff
tests: add test for bogus NULL definition
Eric Blake <ebb9@byu.net>
parents:
9309
diff
changeset
|
28 /* Check that NULL can be passed through varargs as a pointer type, |
8b1dcb465dff
tests: add test for bogus NULL definition
Eric Blake <ebb9@byu.net>
parents:
9309
diff
changeset
|
29 per POSIX 2008. */ |
11831
60a86ea77948
Revert "Avoid compilation error on NetBSD 5.0."
Eric Blake <ebb9@byu.net>
parents:
11806
diff
changeset
|
30 verify (sizeof NULL == sizeof (void *)); |
11658
8b1dcb465dff
tests: add test for bogus NULL definition
Eric Blake <ebb9@byu.net>
parents:
9309
diff
changeset
|
31 |
12600
742a202062e7
stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
Bruno Haible <bruno@clisp.org>
parents:
12559
diff
changeset
|
32 /* Check that the types are all defined. */ |
742a202062e7
stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
Bruno Haible <bruno@clisp.org>
parents:
12559
diff
changeset
|
33 fpos_t t1; |
742a202062e7
stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
Bruno Haible <bruno@clisp.org>
parents:
12559
diff
changeset
|
34 off_t t2; |
742a202062e7
stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
Bruno Haible <bruno@clisp.org>
parents:
12559
diff
changeset
|
35 size_t t3; |
742a202062e7
stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
Bruno Haible <bruno@clisp.org>
parents:
12559
diff
changeset
|
36 ssize_t t4; |
742a202062e7
stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
Bruno Haible <bruno@clisp.org>
parents:
12559
diff
changeset
|
37 va_list t5; |
742a202062e7
stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
Bruno Haible <bruno@clisp.org>
parents:
12559
diff
changeset
|
38 |
8212 | 39 int |
12197
e45d9bb2233e
tests: avoid several compiler warnings
Eric Blake <ebb9@byu.net>
parents:
11831
diff
changeset
|
40 main (void) |
8212 | 41 { |
42 return 0; | |
43 } |