Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 586 → Rev 587

/kernel/trunk/generic/include/align.h
42,6 → 42,10
* @param s Address or size to be aligned.
* @param a Size of alignment, must be power of 2.
*/
#define ALIGN_UP(s, a) (((s) + ((a) - 1)) & ~((a) - 1))
#ifdef ppc32 /* Nasty ppc32 hack. FIX ME. */
# define ALIGN_UP(s, a) ((s) % (a) ? (((s) / (a)) + 1) * (a) : (s))
#else
# define ALIGN_UP(s, a) (((s) + ((a) - 1)) & ~((a) - 1))
#endif
 
#endif
/kernel/trunk/Makefile
44,7 → 44,7
## Common compiler flags
#
 
DEFS = -DARCH=$(ARCH) -DRELEASE=\"$(RELEASE)\" "-DNAME=\"$(NAME)\""
DEFS = -D$(ARCH) -DARCH=$(ARCH) -DRELEASE=\"$(RELEASE)\" "-DNAME=\"$(NAME)\""
CFLAGS = -fno-builtin -fomit-frame-pointer -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -nostdlib -nostdinc -Igeneric/include/
LFLAGS = -M
AFLAGS =