Header --> Id

This commit is contained in:
ceriel
1994-06-24 14:02:31 +00:00
parent bcc84a94d5
commit f26dd7bb01
1254 changed files with 1254 additions and 1254 deletions

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
/* File : _c2type.c
Author : Richard A. O'Keefe.
Updated: 23 April 1984

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#include <time.h>
#define DATE_STR "??? ??? ?? ??:??:?? ????\n"

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#ifndef NOFLOAT
extern double strtod();

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
atoi(s)
register char *s;
{

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
long atol(s)
register char *s;
{

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
int
bcmp(b1, b2, n)
register char *b1, *b2;

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
bcopy(old, new, n)
register char *old, *new;
register int n;

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
bfill(dst, len, fill)
register char *dst;
register int len;

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
bmove(dst, src, len)
char *dst, *src;
int len;

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
bzero(b, l)
register char *b;
{

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#define ALIGN(sz) ((((sz) + (sizeof(long) - 1)) / sizeof(long)) * sizeof(long))
char *
calloc(nelem, elsize)

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#include <sys/types.h>
#include <sys/dir.h>

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
/* From Andy Tanenbaum's book "Computer Networks",
rewritten in C
*/

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#include <time.h>
extern struct tm *localtime();

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#ifndef NOFLOAT

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
char *getenv();
char *index();

View File

@@ -3,7 +3,7 @@
See the copyright notice in the ACK home directory, in the file "Copyright".
*/
/* $Header$ */
/* $Id$ */
/* extended precision arithmetic for the strtod() and cvt() routines */

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
ffc(i)
register int i;
{

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
ffs(i)
register int i;
{

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#ifndef NOFLOAT
extern char *ecvt();

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
char *getenv(name)
register char *name;
{

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#define UTMPFILE "/etc/utmp"
#ifdef __USG

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#include <time.h>
static int monthsize[] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
char *index(s, c)
register char *s, c;
{

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
isatty(f)
{
char buf[128];

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
ltol3(cp, lp, n)
register char *cp;
register long *lp;

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#ifndef NOFLOAT
extern double frexp();

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#include <time.h>
#define LEAPYEAR(year) (!((year) % 4) && (((year) % 100) || !((year) % 400)))

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
char *
memccpy(dst, src, c, n)
register char *dst, *src;

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
char *
memchr(s, c, n)
char *s;

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
int
memcmp(s1, s2, n)
register char *s1, *s2;

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
char *
memcpy(s1, s2, n)
register char *s1, *s2;

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
char *
memset(s, c, n)
char *s;

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
/* mktemp - make a name for a temporary file */
char *mktemp(template)

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
static int bs;
static char *bp;
static char *bufp;

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/dir.h>

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
/* perror(s) print the current error message. */
extern int errno;

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
/*
* (c) copyright 1983 by the Vrije Universiteit, Amsterdam, The Netherlands.
*

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
static qsort1();
static int (*qcompar)();
static qexchange();

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
static long seed = 1L;
int rand()

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#include <sys/types.h>
#include <sys/dir.h>

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
char *rindex(s, c)
register char *s, c;
{

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#include <sys/types.h>
#include <sys/dir.h>

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#include <signal.h>
#include <setjmp.h>

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
/* library routine for copying structs */
__stb(n, f, t)

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
char *strcat(s1, s2)
register char *s1, *s2;
{

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
char *strchr(s, c)
register char *s, c;
{

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
int
strcmp(s, t)
register char *s, *t;

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
char *strcpy(s1, s2)
register char *s1, *s2;
{

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
int
strcspn(string, notin)
char *string;

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
int
strlen(s)
char *s;

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
char *strncat(s1, s2, n)
register char *s1, *s2;
int n;

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
int
strncmp(s, t, n)
register char *s, *t;

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
char
*strncpy(s1, s2, n)
register char *s1, *s2;

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
char *
strpbrk(string, brk)
register char *string, *brk;

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
char *strrchr(s, c)
register char *s, c;
{

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
int
strspn(string, in)
char *string;

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
/* find first occurrence of wanted in s */
char *
strstr(s, wanted)

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#ifndef NOFLOAT
struct mantissa {

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
extern char *strpbrk();
char *

View File

@@ -2,7 +2,7 @@
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
/* $Header$ */
/* $Id$ */
#include <ctype.h>

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
swab(from, to, nbytes)
register char *from, *to;
{

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#include <sys/types.h>
#include <sys/dir.h>

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/dir.h>

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#ifdef __USG
/* system V, so no /etc/ttys file. In this case, scan the
/etc/utmp file

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#ifdef __BSD4_2
struct timeval {
long tv_sec, tv_usec;

View File

@@ -5,7 +5,7 @@
* Author: Ceriel J.H. Jacobs
*/
/* $Header$ */
/* $Id$ */
#include <math.h>
#include <errno.h>

View File

@@ -5,7 +5,7 @@
* Author: Ceriel J.H. Jacobs
*/
/* $Header$ */
/* $Id$ */
#include <math.h>
#include <errno.h>

View File

@@ -5,7 +5,7 @@
* Author: Ceriel J.H. Jacobs
*/
/* $Header$ */
/* $Id$ */
#include <math.h>
#include <errno.h>

View File

@@ -5,7 +5,7 @@
* Author: Ceriel J.H. Jacobs
*/
/* $Header$ */
/* $Id$ */
double
ceil(x)

View File

@@ -5,7 +5,7 @@
* Author: Ceriel J.H. Jacobs
*/
/* $Header$ */
/* $Id$ */
#include <math.h>
#include <errno.h>

View File

@@ -5,7 +5,7 @@
* Author: Ceriel J.H. Jacobs
*/
/* $Header$ */
/* $Id$ */
double
fabs(x)

View File

@@ -5,7 +5,7 @@
* Author: Ceriel J.H. Jacobs
*/
/* $Header$ */
/* $Id$ */
double
floor(x)

View File

@@ -5,7 +5,7 @@
* Author: Ceriel J.H. Jacobs
*/
/* $Header$ */
/* $Id$ */
#include <math.h>
#include <errno.h>

View File

@@ -5,7 +5,7 @@
* Author: Ceriel J.H. Jacobs
*/
/* $Header$ */
/* $Id$ */
double
hypot(x,y)

View File

@@ -5,7 +5,7 @@
* Author: Ceriel J.H. Jacobs
*/
/* $Header$ */
/* $Id$ */
#include <math.h>
#include <errno.h>

View File

@@ -5,7 +5,7 @@
* Author: Ceriel J.H. Jacobs
*/
/* $Header$ */
/* $Id$ */
#include <math.h>
#include <errno.h>

View File

@@ -5,7 +5,7 @@
* Author: Ceriel J.H. Jacobs
*/
/* $Header$ */
/* $Id$ */
#include <math.h>
#include <errno.h>

View File

@@ -5,7 +5,7 @@
* Author: Ceriel J.H. Jacobs
*/
/* $Header$ */
/* $Id$ */
#include <math.h>
#include <errno.h>

View File

@@ -5,7 +5,7 @@
* Author: Ceriel J.H. Jacobs
*/
/* $Header$ */
/* $Id$ */
#include <math.h>
#include <errno.h>

View File

@@ -5,7 +5,7 @@
* Author: Ceriel J.H. Jacobs
*/
/* $Header$ */
/* $Id$ */
#include <math.h>
#include <errno.h>

View File

@@ -5,7 +5,7 @@
* Author: Ceriel J.H. Jacobs
*/
/* $Header$ */
/* $Id$ */
#include <math.h>
#include <errno.h>

View File

@@ -5,7 +5,7 @@
* Author: Ceriel J.H. Jacobs
*/
/* $Header$ */
/* $Id$ */
#include <math.h>
#include <errno.h>

View File

@@ -5,7 +5,7 @@
* Author: Ceriel J.H. Jacobs
*/
/* $Header$ */
/* $Id$ */
#include <math.h>
#include <errno.h>

View File

@@ -5,7 +5,7 @@
* Author: Ceriel J.H. Jacobs
*/
/* $Header$ */
/* $Id$ */
#include <math.h>
#include <errno.h>

View File

@@ -5,7 +5,7 @@
* Author: Ceriel J.H. Jacobs
*/
/* $Header$ */
/* $Id$ */
#include <math.h>
#include <errno.h>

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#include <sgtty.h>
int
_gtty(fildes,argp) int fildes ; struct sgttyb *argp ; {

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#include <sgtty.h>
int
_stty(fildes,argp) int fildes ; struct sgttyb *argp ; {

View File

@@ -1,2 +1,2 @@
/* $Header$ */
/* $Id$ */
_cleanup(){}

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#include <sgtty.h>
int
gtty(fildes,argp) int fildes ; struct sgttyb *argp ; {

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#include <signal.h>
typedef void (*callvec)() ;

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#include <sgtty.h>
int
stty(fildes,argp) int fildes ; struct sgttyb *argp ; {

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
/*
* return offset in file.
*/

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#include <sys/types.h>
#include <sys/timeb.h>
time_t

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#include <stdio.h>
struct _io_buf _stdin = {

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#include <stdio.h>
#include <varargs.h>

View File

@@ -1,4 +1,4 @@
/* $Header$ */
/* $Id$ */
#include <stdio.h>
#include <ctype.h>
#include <varargs.h>

Some files were not shown because too many files have changed in this diff Show More