aboutsummaryrefslogtreecommitdiff
path: root/lib/nano_sleep.c
blob: 6da74a08aef28d7f319d057c075183c00012e8d7 (plain)
1
2
3
4
5
6
#include "../int_defs.h"
#include <time.h>
void nano_sleep(uint32t sec, uint32t nsec) /*EXTRACT_INCL*/ {
  struct timespec ts = { sec, nsec };
  nanosleep(&ts, 0);
}