2010-03-27 Joel Sherrill <joel.sherrill@oarcorp.com>

* libgnat/ada_intrsupp.c, telnetd/check_passwd.c, telnetd/des.c,
	telnetd/genpw.c: Add include of config.h
This commit is contained in:
Joel Sherrill
2010-03-27 15:08:04 +00:00
parent beb13a44d4
commit ddeb7730ab
5 changed files with 37 additions and 4 deletions

View File

@@ -1,3 +1,8 @@
2010-03-27 Joel Sherrill <joel.sherrill@oarcorp.com>
* libgnat/ada_intrsupp.c, telnetd/check_passwd.c, telnetd/des.c,
telnetd/genpw.c: Add include of config.h
2010-03-27 Ralf Corsépius <ralf.corsepius@rtems.org> 2010-03-27 Ralf Corsépius <ralf.corsepius@rtems.org>
* libcsupport/src/termios_baud2index.c, * libcsupport/src/termios_baud2index.c,

View File

@@ -1,3 +1,18 @@
/*
* COPYRIGHT (c) 1989-2010.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
*
* $Id$
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <rtems.h> #include <rtems.h>
#include <rtems/bspIo.h> #include <rtems/bspIo.h>

View File

@@ -57,6 +57,10 @@
* http://www.rtems.com/license/LICENSE. * http://www.rtems.com/license/LICENSE.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <termios.h> #include <termios.h>
#include <errno.h> #include <errno.h>
#include <stdio.h> #include <stdio.h>

View File

@@ -58,6 +58,10 @@
* alignment). * alignment).
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#define __FORCE_GLIBC #define __FORCE_GLIBC
#include <sys/cdefs.h> #include <sys/cdefs.h>
#include <sys/types.h> #include <sys/types.h>

View File

@@ -1,7 +1,3 @@
#include <crypt.h>
#include <stdio.h>
#include <unistd.h>
/* /*
* Authorship * Authorship
* ---------- * ----------
@@ -46,6 +42,15 @@
* *
* ------------------ SLAC Software Notices, Set 4 OTT.002a, 2004 FEB 03 * ------------------ SLAC Software Notices, Set 4 OTT.002a, 2004 FEB 03
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <crypt.h>
#include <stdio.h>
#include <unistd.h>
static void static void
usage(char *nm) usage(char *nm)
{ {