X-Git-Url: http://git.csclub.uwaterloo.ca/?p=kopensolaris-gnu%2Fglibc.git;a=blobdiff_plain;f=time%2Fsys%2Ftimeb.h;h=7035d79fbac0c39b976afe058888c8eec6506fbf;hp=3809ede5527505bb7fe78bd0d38b3ad2b0af6e91;hb=6e2c45a755695644e15228bc7a99b63ad881cc05;hpb=c82d166bf920f487d77d7a7926009486deab165d diff --git a/time/sys/timeb.h b/time/sys/timeb.h index 3809ede552..7035d79fba 100644 --- a/time/sys/timeb.h +++ b/time/sys/timeb.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1994 Free Software Foundation, Inc. +/* Copyright (C) 1994, 1995 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 @@ -25,6 +25,8 @@ Cambridge, MA 02139, USA. */ #include +__BEGIN_DECLS + /* Structure returned by the `ftime' function. */ struct timeb @@ -32,12 +34,13 @@ struct timeb time_t time; /* Seconds since epoch, as from `time'. */ unsigned short int millitm; /* Additional milliseconds. */ short int timezone; /* Minutes west of GMT. */ - short int dstflag; /* Daylight Savings Time in effect. */ + short int dstflag; /* Nonzero if Daylight Savings Time used. */ }; /* Fill in TIMEBUF with information about the current time. */ extern int ftime __P ((struct timeb *__timebuf)); +__END_DECLS #endif /* sys/timeb.h */