summaryrefslogtreecommitdiffstats
path: root/cpukit/pppd
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-08-20 14:59:51 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-08-20 14:59:51 +0000
commita807b75e38c1a0dbc0c3c8f0f38accc65c3c84d5 (patch)
treed687f4cfe765b0f554271080f72bdadc4ee7b5c7 /cpukit/pppd
parent2008-08-20 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-a807b75e38c1a0dbc0c3c8f0f38accc65c3c84d5.tar.bz2
Use stdbool.h. Remove local bool.
Diffstat (limited to 'cpukit/pppd')
-rw-r--r--cpukit/pppd/pppd.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/cpukit/pppd/pppd.h b/cpukit/pppd/pppd.h
index 46e80f5585..ae6f6640f8 100644
--- a/cpukit/pppd/pppd.h
+++ b/cpukit/pppd/pppd.h
@@ -22,6 +22,7 @@
#ifndef __PPPD_H__
#define __PPPD_H__
+#include <stdbool.h> /* bool */
#include <stdio.h> /* for FILE */
#include <limits.h> /* for NGROUPS_MAX */
#include <sys/param.h> /* for MAXPATHLEN and BSD4_4, if defined */
@@ -59,8 +60,6 @@
* Option descriptor structure.
*/
-typedef unsigned char bool;
-
enum opt_type {
o_special_noarg = 0,
o_special = 1,