Deleted Added
full compact
time.h (35285) time.h (38464)
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

--- 102 unchanged lines hidden (view full) ---

111 int tm_yday; /* days since January 1 [0-365] */
112 int tm_isdst; /* Daylight Savings Time flag */
113 long tm_gmtoff; /* offset from CUT in seconds */
114 char *tm_zone; /* timezone abbreviation */
115};
116
117#include <sys/cdefs.h>
118
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

--- 102 unchanged lines hidden (view full) ---

111 int tm_yday; /* days since January 1 [0-365] */
112 int tm_isdst; /* Daylight Savings Time flag */
113 long tm_gmtoff; /* offset from CUT in seconds */
114 char *tm_zone; /* timezone abbreviation */
115};
116
117#include <sys/cdefs.h>
118
119#ifndef _ANSI_SOURCE
120extern char *tzname[];
121#endif
122
119__BEGIN_DECLS
120char *asctime __P((const struct tm *));
121clock_t clock __P((void));
122char *ctime __P((const time_t *));
123double difftime __P((time_t, time_t));
124struct tm *gmtime __P((const time_t *));
125struct tm *localtime __P((const time_t *));
126time_t mktime __P((struct tm *));

--- 32 unchanged lines hidden ---
123__BEGIN_DECLS
124char *asctime __P((const struct tm *));
125clock_t clock __P((void));
126char *ctime __P((const time_t *));
127double difftime __P((time_t, time_t));
128struct tm *gmtime __P((const time_t *));
129struct tm *localtime __P((const time_t *));
130time_t mktime __P((struct tm *));

--- 32 unchanged lines hidden ---