Changeset ddeb7730 in rtems
- Timestamp:
- Mar 27, 2010, 3:08:04 PM (11 years ago)
- Branches:
- 4.10, 4.11, 5, master
- Children:
- 5c2e2bd8
- Parents:
- beb13a4
- Location:
- cpukit
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
rbeb13a4 rddeb7730 1 2010-03-27 Joel Sherrill <joel.sherrill@oarcorp.com> 2 3 * libgnat/ada_intrsupp.c, telnetd/check_passwd.c, telnetd/des.c, 4 telnetd/genpw.c: Add include of config.h 5 1 6 2010-03-27 Ralf Corsépius <ralf.corsepius@rtems.org> 2 7 -
cpukit/libgnat/ada_intrsupp.c
rbeb13a4 rddeb7730 1 /* 2 * COPYRIGHT (c) 1989-2010. 3 * On-Line Applications Research Corporation (OAR). 4 * 5 * The license and distribution terms for this file may be 6 * found in the file LICENSE in this distribution or at 7 * http://www.rtems.com/license/LICENSE. 8 * 9 * $Id$ 10 */ 11 12 #ifdef HAVE_CONFIG_H 13 #include "config.h" 14 #endif 15 1 16 #include <rtems.h> 2 17 #include <rtems/bspIo.h> -
cpukit/telnetd/check_passwd.c
rbeb13a4 rddeb7730 58 58 */ 59 59 60 #ifdef HAVE_CONFIG_H 61 #include "config.h" 62 #endif 63 60 64 #include <termios.h> 61 65 #include <errno.h> -
cpukit/telnetd/des.c
rbeb13a4 rddeb7730 58 58 * alignment). 59 59 */ 60 61 #ifdef HAVE_CONFIG_H 62 #include "config.h" 63 #endif 60 64 61 65 #define __FORCE_GLIBC -
cpukit/telnetd/genpw.c
rbeb13a4 rddeb7730 1 #include <crypt.h>2 #include <stdio.h>3 #include <unistd.h>4 5 1 /* 6 2 * Authorship … … 47 43 * ------------------ SLAC Software Notices, Set 4 OTT.002a, 2004 FEB 03 48 44 */ 45 46 #ifdef HAVE_CONFIG_H 47 #include "config.h" 48 #endif 49 50 #include <crypt.h> 51 #include <stdio.h> 52 #include <unistd.h> 53 49 54 static void 50 55 usage(char *nm)
Note: See TracChangeset
for help on using the changeset viewer.