diff options
author | Nicolas Dato <nicolas.dato@gmail.com> | 2024-10-13 19:57:49 -0300 |
---|---|---|
committer | Nicolas Dato <nicolas.dato@gmail.com> | 2024-10-13 19:57:49 -0300 |
commit | 4a4e956c26d2f73534e504c36e2ca6a2617644b8 (patch) | |
tree | 72bc232f93514b3206da986e4d4aad1e3024e7d8 /src/utils.h | |
parent | 37e2f4899b5d3e594c1080e25c04b40bc29d53a4 (diff) | |
download | libtuberia-4a4e956c26d2f73534e504c36e2ca6a2617644b8.tar.gz |
adding tests for the main library
Diffstat (limited to 'src/utils.h')
-rw-r--r-- | src/utils.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/utils.h b/src/utils.h index a98763a..0fde429 100644 --- a/src/utils.h +++ b/src/utils.h @@ -1,10 +1,10 @@ -#ifndef __LIBTUBERIA_UTILS_H__ -#define __LIBTUBERIA_UTILS_H__ +#ifndef LIBTUBERIA_UTILS_H__ +#define LIBTUBERIA_UTILS_H__ #include <sys/time.h> struct timespec *timespec_add_ms(struct timespec *ts, int timeout_ms); struct timespec *gettimespec(struct timespec *ts); -#endif +#endif //LIBTUBERIA_UTILS_H__ |