source: buchla-68k/orig/DATE/STIME.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: 312 bytes
Line 
1/*
2 =============================================================================
3 stime.c -- set the system time of day
4 Version 1 -- 1987-03-23
5 =============================================================================
6*/
7
8stime(tloc)
9long *tloc;
10{
11 extern long _time;
12
13 _time = *tloc;
14}
Note: See TracBrowser for help on using the repository browser.