summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-09-16 06:23:26 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-09-16 06:23:26 +0000
commite80aa4fae883fe42e3b34ad505a86d3239c4522a (patch)
treee1aea9db2f811c5bbe7d9ecdf681eb09a4541c44 /cpukit
parent2007-09-16 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-e80aa4fae883fe42e3b34ad505a86d3239c4522a.tar.bz2
2007-09-16 Ralf Corsépius <ralf.corsepius@rtems.org>
* libnetworking/net/ppp_defs.h: Include rtems/stdint.h. Use uint32_t for ext_accm.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/libnetworking/net/ppp_defs.h4
2 files changed, 8 insertions, 1 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 6cbf668ee0..4aee609cd1 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,10 @@
2007-09-16 Ralf Corsépius <ralf.corsepius@rtems.org>
+ * libnetworking/net/ppp_defs.h: Include rtems/stdint.h.
+ Use uint32_t for ext_accm.
+
+2007-09-16 Ralf Corsépius <ralf.corsepius@rtems.org>
+
* pppd/auth.c, pppd/demand.c, pppd/ipcp.c, pppd/ipcp.h,
pppd/lcp.c, pppd/lcp.h, pppd/magic.c, pppd/magic.h, pppd/options.c,
pppd/pppd.h, pppd/sys-rtems.c, pppd/utils.c: Convert to using C99
diff --git a/cpukit/libnetworking/net/ppp_defs.h b/cpukit/libnetworking/net/ppp_defs.h
index 81c46ee5fa..7fb32872ba 100644
--- a/cpukit/libnetworking/net/ppp_defs.h
+++ b/cpukit/libnetworking/net/ppp_defs.h
@@ -34,6 +34,8 @@
#ifndef _PPP_DEFS_H_
#define _PPP_DEFS_H_
+#include <rtems/stdint.h>
+
/*
* The basic PPP frame.
*/
@@ -85,7 +87,7 @@
/*
* Extended asyncmap - allows any character to be escaped.
*/
-typedef u_int32_t ext_accm[8];
+typedef uint32_t ext_accm[8];
/*
* What to do with network protocol (NP) packets.