mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Remove home-grown prototypes of time() and localtime().
Reviewed by: md5(1)
This commit is contained in:
parent
19dbbb64f5
commit
9b1fd3272e
1 changed files with 3 additions and 3 deletions
|
|
@ -70,8 +70,8 @@ main(argc, argv)
|
|||
register u_int secs;
|
||||
register int hours, minutes;
|
||||
register char c, *cp = NULL;
|
||||
struct tm *t, *localtime();
|
||||
time_t now, time();
|
||||
struct tm *t;
|
||||
time_t now;
|
||||
int plusnow, t_12_hour;
|
||||
char buf[50];
|
||||
|
||||
|
|
@ -142,7 +142,7 @@ doalarm(secs)
|
|||
u_int secs;
|
||||
{
|
||||
register int bother;
|
||||
time_t daytime, time();
|
||||
time_t daytime;
|
||||
char tb[80];
|
||||
int pid;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue