summaryrefslogtreecommitdiff
path: root/gcc_arm/system.h
diff options
context:
space:
mode:
authorcamthesaxman <camthesaxman@users.noreply.github.com>2020-01-30 01:57:36 -0600
committercamthesaxman <camthesaxman@users.noreply.github.com>2020-01-30 01:57:36 -0600
commitd8bdbc027f5ef265669feb49270c6c8c32c7cfe2 (patch)
treebc7583dc5f5c8e02d7dfb6f51a274aa21518c74b /gcc_arm/system.h
parent187c8b25084676c42000bfa845046fde1b87ccde (diff)
make ARM compiler build on Windows
Diffstat (limited to 'gcc_arm/system.h')
-rwxr-xr-xgcc_arm/system.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/gcc_arm/system.h b/gcc_arm/system.h
index eeec775..2603bd1 100755
--- a/gcc_arm/system.h
+++ b/gcc_arm/system.h
@@ -36,21 +36,6 @@ Boston, MA 02111-1307, USA. */
#define NULL 0
#endif
-/* The compiler is not a multi-threaded application and therefore we
- do not have to use the locking functions. */
-#ifdef HAVE_PUTC_UNLOCKED
-# undef putc
-# define putc(C, Stream) putc_unlocked (C, Stream)
-#endif
-#ifdef HAVE_FPUTC_UNLOCKED
-# undef fputc
-# define fputc(C, Stream) fputc_unlocked (C, Stream)
-#endif
-#ifdef HAVE_FPUTS_UNLOCKED
-# undef fputs
-# define fputs(String, Stream) fputs_unlocked (String, Stream)
-#endif
-
#include <ctype.h>
/* Jim Meyering writes:
@@ -195,10 +180,6 @@ extern int errno;
#define MIN(X,Y) ((X) < (Y) ? (X) : (Y))
#define MAX(X,Y) ((X) > (Y) ? (X) : (Y))
-#ifdef HAVE_SYS_WAIT_H
-#include <sys/wait.h>
-#endif
-
#ifndef WIFSIGNALED
#define WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f)
#endif