Skip to content

Commit

Permalink
push missing header changes
Browse files Browse the repository at this point in the history
  • Loading branch information
qwx9 committed Jan 23, 2025
1 parent 2169f28 commit 9798c2f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions fns.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ void sysquit(void);
void quit(void);
void sysinit(void);

void xsrand(u64int);
float xfrand(void);
u32int xlrand(void);
u32int xnrand(u32int);

#define MAX(a,b) ((a) > (b) ? (a) : (b))
#define MIN(a,b) ((a) < (b) ? (a) : (b))

Expand Down

0 comments on commit 9798c2f

Please sign in to comment.