Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions supp.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,10 @@ extern int rand P((void));

/* We should have a definition for time_t and struct tm by now. Make
* sure we have definitions for the functions we want to call.
* The argument to localtime should be P((const time_t *)), but Ultrix
* 4.0 leaves out the const in their prototype. Damn them.
*/

extern time_t time P((time_t *));
extern struct tm *localtime ();
extern struct tm *localtime P((const time_t *));

/* Terminate the game */

Expand Down