This website works better with JavaScript.
Home
Explore
Help
Sign In
Immanuel
/
btpd
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Add max(x, y) macro.
master
Richard Nyberg
18 years ago
parent
1b7bb76fb7
commit
d5700c2f20
1 changed files
with
2 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-0
misc/subr.h
+ 2
- 0
misc/subr.h
View File
@@ -4,7 +4,9 @@
#include <stdio.h>
#include <stdarg.h>
#define max(x, y) ((x) >= (y) ? (x) : (y))
#define min(x, y) ((x) <= (y) ? (x) : (y))
#define SHAHEXSIZE 41
int set_nonblocking(int fd);
Write
Preview
Loading…
Cancel
Save