diff options
Diffstat (limited to 'sysdeps/unix/sysv/bits')
-rw-r--r-- | sysdeps/unix/sysv/bits/dirent.h | 4 | ||||
-rw-r--r-- | sysdeps/unix/sysv/bits/stat.h | 11 | ||||
-rw-r--r-- | sysdeps/unix/sysv/bits/utmp.h | 15 | ||||
-rw-r--r-- | sysdeps/unix/sysv/bits/utsname.h | 22 |
4 files changed, 35 insertions, 17 deletions
diff --git a/sysdeps/unix/sysv/bits/dirent.h b/sysdeps/unix/sysv/bits/dirent.h index d10417d507..ca4b050296 100644 --- a/sysdeps/unix/sysv/bits/dirent.h +++ b/sysdeps/unix/sysv/bits/dirent.h @@ -17,6 +17,10 @@ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifndef _DIRENT_H +# error "Never use <bits/dirent.h> directly; include <dirent.h> instead." +#endif + struct dirent { unsigned short int d_fileno; diff --git a/sysdeps/unix/sysv/bits/stat.h b/sysdeps/unix/sysv/bits/stat.h index 56f4544594..8334feaa2e 100644 --- a/sysdeps/unix/sysv/bits/stat.h +++ b/sysdeps/unix/sysv/bits/stat.h @@ -16,12 +16,9 @@ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* - * Never include this file directly; use <sys/stat.h> instead. - */ - -#ifndef _BITS_STAT_H -#define _BITS_STAT_H 1 +#ifndef _SYS_STAT_H +# error "Never include <bits/stat.h> directly; use <sys/stat.h> instead." +#endif struct stat { @@ -61,5 +58,3 @@ struct stat #define __S_IREAD 0400 /* Read by owner. */ #define __S_IWRITE 0200 /* Write by owner. */ #define __S_IEXEC 0100 /* Execute by owner. */ - -#endif /* bits/stat.h */ diff --git a/sysdeps/unix/sysv/bits/utmp.h b/sysdeps/unix/sysv/bits/utmp.h index 1bb1a55873..9304013d32 100644 --- a/sysdeps/unix/sysv/bits/utmp.h +++ b/sysdeps/unix/sysv/bits/utmp.h @@ -18,7 +18,7 @@ Boston, MA 02111-1307, USA. */ #ifndef _UTMP_H -#error "Never use <bits/utmp.h> directly; include <utmp.h> instead." +# error "Never include <bits/utmp.h> directly; use <utmp.h> instead." #endif @@ -28,7 +28,6 @@ #define _PATH_WTMP "/var/adm/wtmp" #define _PATH_LASTLOG "/var/adm/lastlog" -__BEGIN_DECLS struct utmp { @@ -36,14 +35,14 @@ struct utmp char ut_user[8]; char ut_id[4]; char ut_line[12]; - short ut_pid; - short ut_type; + short int ut_pid; + short int ut_type; struct exit_status { - short e_termination; - short e_exit; + short int e_termination; + short int e_exit; } ut_exit; - time_t ut_time; + __time_t ut_time; }; @@ -53,5 +52,3 @@ struct utmp #define _HAVE_UT_ID 1 #define _HAVE_UT_TV 1 #define _HAVE_UT_HOST 1 - -__END_DECLS diff --git a/sysdeps/unix/sysv/bits/utsname.h b/sysdeps/unix/sysv/bits/utsname.h index 31473cf4ea..fb11e4f029 100644 --- a/sysdeps/unix/sysv/bits/utsname.h +++ b/sysdeps/unix/sysv/bits/utsname.h @@ -1 +1,23 @@ +/* Copyright (C) 1997 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public License as + published by the Free Software Foundation; either version 2 of the + License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with the GNU C Library; see the file COPYING.LIB. If not, + write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. */ + +#ifndef _UTSNAME_H +# error "Never include <bits/utsname.h> directly; use <sys/utsname.h> instead." +#endif + #define _UTSNAME_LENGTH 9 |