summaryrefslogtreecommitdiffstats
path: root/cpukit/pppd/magic.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-09-16 04:13:48 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-09-16 04:13:48 +0000
commit8a4f22e64ec09db4075cccb24dc290386ce16a95 (patch)
treeed36905d0a1fc10730f98c409906b4a1c110340b /cpukit/pppd/magic.h
parent2007-09-14 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-8a4f22e64ec09db4075cccb24dc290386ce16a95.tar.bz2
Convert to using C99 fixed-size types instead of BSD fixed-size types.
Diffstat (limited to 'cpukit/pppd/magic.h')
-rw-r--r--cpukit/pppd/magic.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/pppd/magic.h b/cpukit/pppd/magic.h
index 338fb2cbf4..572a550042 100644
--- a/cpukit/pppd/magic.h
+++ b/cpukit/pppd/magic.h
@@ -20,4 +20,4 @@
*/
void magic_init(void); /* Initialize the magic number generator */
-u_int32_t magic(void); /* Returns the next magic number */
+uint32_t magic(void); /* Returns the next magic number */