source: buchla-68k/orig/DATE/TIME.C

Last change on this file was 3ae31e9, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Imported original source code.

  • Property mode set to 100755
File size: 390 bytes
Line 
1/*
2 =============================================================================
3 time.c -- get the time of day in seconds since Jan 1, 1970
4 Version 1 -- 1987-03-23
5 =============================================================================
6*/
7
8long _time; /* system time of day */
9
10long
11time(tloc)
12long *tloc; {
13
14 if (tloc)
15 *tloc = _time;
16
17 return (_time);
18}
Note: See TracBrowser for help on using the repository browser.