This commit is contained in:
Mark Andrews 2001-04-03 07:11:35 +00:00
parent da3db8e2a1
commit 3b371eaa5d

View file

@ -110,4 +110,8 @@ int daemon(int nochdir, int noclose);
char * strsep(char **stringp, const char *delim);
#endif
#ifndef ALIGN
#define ALIGN(p) (((unsigned int)(p) + (sizeof(int) - 1)) & ~(sizeof(int) - 1))
#endif
#endif