openblt

a hobby OS from the late 90s
git clone http://frotz.net/git/openblt.git
Log | Files | Refs | LICENSE

util.h (123B)


      1 #ifndef UTIL_H
      2 #define UTIL_H
      3 
      4 #define max(a, b) ((a) > (b) ? (a) : (b))
      5 #define min(a, b) ((a) < (b) ? (a) : (b))
      6 
      7 #endif