Version and string position updates.

This commit is contained in:
Andrew Wood
2023-09-23 21:56:59 +01:00
parent 2033c6085f
commit 7bc91e10de
7 changed files with 58 additions and 58 deletions
+4 -4
View File
@@ -239,12 +239,12 @@ void pv_nanosleep(long long nanoseconds)
#else
struct timeval tv;
tv.tv_sec = 0;
/*@-type@*/
/*@-type@ */
tv.tv_usec = nanoseconds / 1000;
/*@+type@*/ /* splint rationale - best effort */
/*@-null@*/
/*@+type@ *//* splint rationale - best effort */
/*@-null@ */
(void) select(0, NULL, NULL, NULL, &tv);
/*@+null@*/ /* splint doesn't know about select() */
/*@+null@ *//* splint doesn't know about select() */
#endif
}