Blame sysincl.h

Packit 96c956
/*
Packit 96c956
  chronyd/chronyc - Programs for keeping computer clocks accurate.
Packit 96c956
Packit 96c956
 **********************************************************************
Packit 96c956
 * Copyright (C) Richard P. Curnow  1997-2003
Packit 96c956
 * 
Packit 96c956
 * This program is free software; you can redistribute it and/or modify
Packit 96c956
 * it under the terms of version 2 of the GNU General Public License as
Packit 96c956
 * published by the Free Software Foundation.
Packit 96c956
 * 
Packit 96c956
 * This program is distributed in the hope that it will be useful, but
Packit 96c956
 * WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 96c956
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 96c956
 * General Public License for more details.
Packit 96c956
 * 
Packit 96c956
 * You should have received a copy of the GNU General Public License along
Packit 96c956
 * with this program; if not, write to the Free Software Foundation, Inc.,
Packit 96c956
 * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
Packit 96c956
 * 
Packit 96c956
 **********************************************************************
Packit 96c956
Packit 96c956
  =======================================================================
Packit 96c956
Packit 96c956
  This file includes all system header files that the software
Packit 96c956
  requires.  This allows us to isolate system dependencies to this file
Packit 96c956
  alone.
Packit 96c956
  */
Packit 96c956
Packit 96c956
#ifndef GOT_SYSINCL_H
Packit 96c956
#define GOT_SYSINCL_H
Packit 96c956
Packit 96c956
#include <assert.h>
Packit 96c956
#include <ctype.h>
Packit 96c956
#include <errno.h>
Packit 96c956
#include <fcntl.h>
Packit 96c956
#include <float.h>
Packit 96c956
#include <glob.h>
Packit 96c956
#include <grp.h>
Packit 96c956
#include <inttypes.h>
Packit 96c956
#include <math.h>
Packit 96c956
#include <netinet/in.h>
Packit 96c956
#include <pwd.h>
Packit 96c956
#include <signal.h>
Packit 96c956
#include <stdarg.h>
Packit 96c956
#include <stddef.h>
Packit 96c956
#include <stdio.h>
Packit 96c956
#include <stdlib.h>
Packit 96c956
#include <string.h>
Packit 96c956
#include <sys/ioctl.h>
Packit 96c956
#include <sys/socket.h>
Packit 96c956
#include <sys/stat.h>
Packit 96c956
#include <sys/time.h>
Packit 96c956
#include <sys/types.h>
Packit 96c956
#include <sys/un.h>
Packit 96c956
#include <sys/shm.h>
Packit 96c956
#include <sys/wait.h>
Packit 96c956
#include <syslog.h>
Packit 96c956
#include <time.h>
Packit 96c956
#include <unistd.h>
Packit 96c956
Packit 96c956
#if defined(LINUX) || defined(FREEBSD) || defined(NETBSD) || defined(SOLARIS) || defined(HAVE_MACOS_SYS_TIMEX)
Packit 96c956
#include <sys/timex.h>
Packit 96c956
#endif
Packit 96c956
Packit 96c956
#ifdef FEAT_IPV6
Packit 96c956
/* For inet_ntop() */
Packit 96c956
#include <arpa/inet.h>
Packit 96c956
#endif
Packit 96c956
Packit 96c956
#ifdef HAVE_GETRANDOM
Packit 96c956
#include <sys/random.h>
Packit 96c956
#endif
Packit 96c956
Packit 96c956
#endif /* GOT_SYSINCL_H */