summaryrefslogtreecommitdiff
path: root/accel-pppd/ppp
diff options
context:
space:
mode:
authorGuillaume Nault <g.nault@alphalink.fr>2018-10-24 16:36:10 +0200
committerDmitry Kozlov <xeb@mail.ru>2018-10-26 06:34:34 +0300
commit8de162eb8c0ea481fa059b463f2555cbfaf6a7a6 (patch)
tree0910080a2d6b1c576da14edf2c36059aa5dc40cb /accel-pppd/ppp
parentd906db437f7425fcf4e2ada29d2770b49de02c6e (diff)
downloadaccel-ppp-8de162eb8c0ea481fa059b463f2555cbfaf6a7a6.tar.gz
accel-ppp-8de162eb8c0ea481fa059b463f2555cbfaf6a7a6.zip
ppp: make ppp_auth.h self-contained
We need to include <stdint.h> to define 'uint8_t' and "ppp.h" for 'struct ppp_t'. Signed-off-by: Guillaume Nault <g.nault@alphalink.fr>
Diffstat (limited to 'accel-pppd/ppp')
-rw-r--r--accel-pppd/ppp/ppp_auth.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/accel-pppd/ppp/ppp_auth.h b/accel-pppd/ppp/ppp_auth.h
index 5049fd5a..c8df9fc6 100644
--- a/accel-pppd/ppp/ppp_auth.h
+++ b/accel-pppd/ppp/ppp_auth.h
@@ -1,7 +1,10 @@
#ifndef PPP_AUTH_H
#define PPP_AUTH_H
+#include <stdint.h>
+
#include "list.h"
+#include "ppp.h"
struct ppp_auth_handler_t;