Blame gnulib-tests/test-unistd.c

Packit Service fdd496
/* Test of <unistd.h> substitute.
Packit Service fdd496
   Copyright (C) 2007, 2009-2017 Free Software Foundation, Inc.
Packit Service fdd496
Packit Service fdd496
   This program is free software: you can redistribute it and/or modify
Packit Service fdd496
   it under the terms of the GNU General Public License as published by
Packit Service fdd496
   the Free Software Foundation; either version 3 of the License, or
Packit Service fdd496
   (at your option) any later version.
Packit Service fdd496
Packit Service fdd496
   This program is distributed in the hope that it will be useful,
Packit Service fdd496
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service fdd496
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service fdd496
   GNU General Public License for more details.
Packit Service fdd496
Packit Service fdd496
   You should have received a copy of the GNU General Public License
Packit Service fdd496
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
Packit Service fdd496
Packit Service fdd496
/* Written by Bruno Haible <bruno@clisp.org>, 2007.  */
Packit Service fdd496
Packit Service fdd496
#include <config.h>
Packit Service fdd496
Packit Service fdd496
#include <unistd.h>
Packit Service fdd496
Packit Service fdd496
#include "verify.h"
Packit Service fdd496
Packit Service fdd496
/* Check that NULL can be passed through varargs as a pointer type,
Packit Service fdd496
   per POSIX 2008.  */
Packit Service fdd496
verify (sizeof NULL == sizeof (void *));
Packit Service fdd496
Packit Service fdd496
/* Check that the various SEEK_* macros are defined.  */
Packit Service fdd496
int sk[] = { SEEK_CUR, SEEK_END, SEEK_SET };
Packit Service fdd496
Packit Service fdd496
/* Check that the various *_FILENO macros are defined.  */
Packit Service fdd496
#if ! (defined STDIN_FILENO                                     \
Packit Service fdd496
       && (STDIN_FILENO + STDOUT_FILENO + STDERR_FILENO == 3))
Packit Service fdd496
missing or broken *_FILENO macros
Packit Service fdd496
#endif
Packit Service fdd496
Packit Service fdd496
/* Check that the types are all defined.  */
Packit Service fdd496
size_t t1;
Packit Service fdd496
ssize_t t2;
Packit Service fdd496
#ifdef TODO /* Not implemented in gnulib yet */
Packit Service fdd496
uid_t t3;
Packit Service fdd496
gid_t t4;
Packit Service fdd496
#endif
Packit Service fdd496
off_t t5;
Packit Service fdd496
pid_t t6;
Packit Service fdd496
#ifdef TODO
Packit Service fdd496
useconds_t t7;
Packit Service fdd496
intptr_t t8;
Packit Service fdd496
#endif
Packit Service fdd496
Packit Service fdd496
int
Packit Service fdd496
main (void)
Packit Service fdd496
{
Packit Service fdd496
  return 0;
Packit Service fdd496
}