20 lines
383 B
C
20 lines
383 B
C
|
/*
|
||
|
* Raspberry Pi support library for the ACK
|
||
|
* © 2013 David Given
|
||
|
* This file is redistributable under the terms of the 3-clause BSD license.
|
||
|
* See the file 'Copying' in the root of the distribution for the full text.
|
||
|
*/
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include <errno.h>
|
||
|
#include <unistd.h>
|
||
|
#include <time.h>
|
||
|
#include "libsys.h"
|
||
|
|
||
|
time_t time(time_t* t)
|
||
|
{
|
||
|
if (t)
|
||
|
*t = 0;
|
||
|
return 0;
|
||
|
}
|