* Merge in cygwin-64bit-branch.

This commit is contained in:
Corinna Vinschen
2013-04-23 09:44:36 +00:00
parent 1875ee55d3
commit 61522196c7
253 changed files with 10632 additions and 5055 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2000, 2001, 2002, 2009, 2011 Red Hat, Inc.
* Copyright (c) 2000, 2001, 2002, 2009, 2011, 2013 Red Hat, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -13,6 +13,20 @@
*
*/
#ifdef __x86_64__
#include <stdio.h>
int
main (int argc, char **argv)
{
fprintf (stderr, "%s: This application is unsuported on x86_64 so far.\n",
argv[0]);
return 1;
}
#else
#include <errno.h>
#include <stdio.h>
#include <string.h>
@@ -939,3 +953,4 @@ main (int argc, char **argv)
exit (0);
}
#endif /* !__x86_64 */