diff options
Diffstat (limited to 'accel-pppd/include/linux_ppp.h')
-rw-r--r-- | accel-pppd/include/linux_ppp.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/accel-pppd/include/linux_ppp.h b/accel-pppd/include/linux_ppp.h new file mode 100644 index 00000000..ebb4c235 --- /dev/null +++ b/accel-pppd/include/linux_ppp.h @@ -0,0 +1,19 @@ +#ifndef __KERNEL_PPP_H +#define __KERNEL_PPP_H + +#include <linux/types.h> + +#ifndef aligned_u64 +#define aligned_u64 __u64 __attribute__((aligned(8))) +#endif + +#ifndef __aligned_u64 +#define __aligned_u64 __u64 __attribute__((aligned(8))) +#endif + +#include <linux/ppp_defs.h> +#include <linux/if.h> +#include <linux/if_ppp.h> + +#endif + |