All pastes #1817871 Raw Edit

clueless

public text v1 · immutable
#1817871 ·published 2010-03-01 21:25 UTC
rendered paste body
#include <stdio.h>#include <time.h>int main() {	struct timespec forever = { 1000000, 0 };	printf("%ld\n", (unsigned long) forever.tv_sec);	printf("%ld\n", (unsigned long) forever.tv_nsec);	return 0;}