mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-09-06 20:55:13 +02:00
9 lines
173 B
C
9 lines
173 B
C
/*
|
|
* Userspace-level compat hacks
|
|
*/
|
|
#pragma once
|
|
/* linux-glibc-devel 2.6.34 header screwup */
|
|
#ifndef ALIGN
|
|
# define ALIGN(s, n) (((s) + ((n) - 1)) & ~((n) - 1))
|
|
#endif
|