c_src: regenerate
[nit.git] / c_src / time_nit.c
diff --git a/c_src/time_nit.c b/c_src/time_nit.c
deleted file mode 100644 (file)
index ca025fb..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-/* This file is part of NIT ( http://www.nitlanguage.org ).
- *
- * Copyright 2008 Floréal Morandat <morandat@lirmm.fr> 
- *
- * This file is free software, which comes along with NIT.  This software is
- * distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
- * without  even  the implied warranty of  MERCHANTABILITY or  FITNESS FOR A 
- * PARTICULAR PURPOSE.  You can modify it is you want,  provided this header
- * is kept unaltered, and a notification of the changes is added.
- * You  are  allowed  to  redistribute it and sell it, alone or is a part of
- * another product.
- */
-
-#include "time_nit.h"
-
-void std_nanosleep_(long sec,long nanosec) {
-       const struct timespec req = {sec, nanosec};
-       nanosleep(&req, NULL);
-}