You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
152 B
C
11 lines
152 B
C
22 years ago
|
#include "taia.h"
|
||
|
|
||
|
/* XXX: breaks tai encapsulation */
|
||
|
|
||
|
void taia_uint(struct taia *t,unsigned int s)
|
||
|
{
|
||
|
t->sec.x = s;
|
||
|
t->nano = 0;
|
||
|
t->atto = 0;
|
||
|
}
|