cdefs cleanup

This commit is contained in:
Andrey A. Chernov 1997-03-09 20:09:17 +00:00
parent bbea88d05d
commit 8ea7f0577b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=23585
3 changed files with 4 additions and 6 deletions

View file

@ -15,13 +15,13 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* $Id$
* $Id: cdefs.h,v 1.3 1997/02/22 16:10:04 peter Exp $
*
* TODO:
*/
#ifndef __P
#ifdef __bsdi__
#if defined(__bsdi__) || defined(__FreeBSD__)
#include <sys/cdefs.h>
#else
#ifdef __STDC__

View file

@ -18,7 +18,7 @@
* Columbus, OH 43221
* (614)451-1883
*
* $Id: chat.c,v 1.19 1997/03/08 12:15:58 ache Exp $
* $Id: chat.c,v 1.20 1997/03/09 20:03:34 ache Exp $
*
* TODO:
* o Support more UUCP compatible control sequences.
@ -34,7 +34,6 @@
#include <sys/time.h>
#include <fcntl.h>
#include <errno.h>
#include <sys/cdefs.h>
#include <signal.h>
#include <sys/wait.h>
#include "timeout.h"

View file

@ -17,7 +17,7 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* $Id: timer.c,v 1.11 1997/03/08 09:55:42 ache Exp $
* $Id: timer.c,v 1.12 1997/03/09 20:03:51 ache Exp $
*
* TODO:
*/
@ -25,7 +25,6 @@
#include <sys/time.h>
#include <signal.h>
#include "timeout.h"
#include <sys/cdefs.h>
#ifdef SIGALRM
#include <errno.h>
#endif