Commit 6594e599 by Kelley Cook Committed by R. Kelley Cook

cygwin1.c: Convert to ISO C90 prototypes.

2003-09-30  Kelley Cook  <kelleycoook@wideopenwest.com>

	* config/i386/cygwin1.c: Convert to ISO C90 prototypes.
	* config/i386/winnt.c: Likewise.
	* config/i386/cygming.h: Likewise.

From-SVN: r71956
parent 51872377
2003-09-30 Kelley Cook <kelleycoook@wideopenwest.com>
* config/i386/cygwin1.c: Convert to ISO C90 prototypes.
* config/i386/winnt.c: Likewise.
* config/i386/cygming.h: Likewise.
2003-09-30 Kazu Hirata <kazu@cs.umass.edu>
* fold-const.c (fold): Fold (A & ~B) - (A & B) into
......
......@@ -122,7 +122,7 @@ union tree_node;
#define DRECTVE_SECTION_FUNCTION \
void \
drectve_section () \
drectve_section (void) \
{ \
if (in_section != in_drectve) \
{ \
......
......@@ -26,10 +26,9 @@ Boston, MA 02111-1307, USA. */
#include <string.h>
void
mingw_scan (argc, argv, spec_machine)
int argc ATTRIBUTE_UNUSED;
const char *const *argv;
char **spec_machine;
mingw_scan (int argc ATTRIBUTE_UNUSED,
const char *const *argv,
char **spec_machine)
{
putenv ("GCC_CYGWIN_MINGW=0");
......
......@@ -578,9 +578,7 @@ i386_pe_strip_name_encoding_full (const char *str)
whereas symbols for functions using other calling conventions don't
have a prefix (unless they are marked dllimport or dllexport). */
void i386_pe_output_labelref (stream, name)
FILE *stream;
const char *name;
void i386_pe_output_labelref (FILE *stream, const char *name)
{
if (strncmp (name, DLL_IMPORT_PREFIX, strlen (DLL_IMPORT_PREFIX))
== 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment