Skip to content

Commit

Permalink
Make the types signed
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnoKing committed Dec 31, 2024
1 parent f858434 commit 0be4ea4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/libast/features/time
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
lib getrusage,nanosleep,usleep,_strftime
typ clock_t = uint32_t
typ time_t = uint64_t
typ suseconds_t = uint64_t
typ time_t = int64_t
typ suseconds_t = int32_t

if sys resource {
#include <sys/resource.h>
Expand Down

0 comments on commit 0be4ea4

Please sign in to comment.