about summary refs log tree commit homepage
path: root/ext/unicorn_http/c_util.h
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-08-02 19:14:50 -0700
committerEric Wong <normalperson@yhbt.net>2009-08-09 02:52:03 -0700
commit88ae75988aaeb198f9633d36c424b07296389027 (patch)
treeb7447bbfe967b2eb2c0bc6017503da2fb0ea35b1 /ext/unicorn_http/c_util.h
parent2033101b3e9ca9fdc4efa8a658404594df67131f (diff)
downloadunicorn-88ae75988aaeb198f9633d36c424b07296389027.tar.gz
Diffstat (limited to 'ext/unicorn_http/c_util.h')
-rw-r--r--ext/unicorn_http/c_util.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/unicorn_http/c_util.h b/ext/unicorn_http/c_util.h
index 895c686..424e861 100644
--- a/ext/unicorn_http/c_util.h
+++ b/ext/unicorn_http/c_util.h
@@ -9,6 +9,7 @@
 #include <unistd.h>
 #include <assert.h>
 
+#define MIN(a,b) (a < b ? a : b)
 #define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0]))
 
 #ifndef SIZEOF_OFF_T