Add sun4i ram controller definitions
[AROS.git] / test / clib / usleep.c
blob4223a5be0f000709fbe7fbc4b15163c61c5851b6
1 /*
2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include "test.h"
7 #include <stdio.h>
8 #include <unistd.h>
10 int main()
12 TEST((usleep(1000000) != -1));
13 return OK;
16 void cleanup()