Upload files to "include/stdWullie/definitions"

This commit is contained in:
2026-08-11 21:11:00 +00:00
parent c3b39135f6
commit 1984fb9269
4 changed files with 88 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
// this code is licenced under Wrathmark licence
// © 2026 wullie wulliestudio.com
// please see attached licence for full usage and rights
#ifndef TIMESPEC_H
#define TIMESPEC_H
// storage for seconds and nano seconds
typedef struct timespec{
long tv_sec;
long tv_nsec;
}timespec;
#endif