diff options
author | Pixel <Pixel> | 2001-10-29 15:44:12 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2001-10-29 15:44:12 +0000 |
commit | 2e5bed84841f33ff28dd95b77b555720c875a286 (patch) | |
tree | de6cbcbf5fa65e90e1888d52a9426373a1638c61 /include/General.h | |
parent | 0a6190d0269392e875a479df01b152d47ea4143c (diff) |
Beginning task manager
Diffstat (limited to 'include/General.h')
-rw-r--r-- | include/General.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/General.h b/include/General.h new file mode 100644 index 0000000..6f423ed --- /dev/null +++ b/include/General.h @@ -0,0 +1,7 @@ +#ifndef __GENERAL_H__ +#define __GENERAL_H__ + +#define MAX(__a,__b) ((__a)<(__b)?(__b):(__a)) +#define MIN(__a,__b) ((__a)>(__b)?(__b):(__a)) + +#endif |