diff options
author | Richard Earnshaw <Richard.Earnshaw@arm.com> | 2019-07-26 16:08:55 +0100 |
---|---|---|
committer | Richard Earnshaw <Richard.Earnshaw@arm.com> | 2019-07-26 16:13:30 +0100 |
commit | 65416cca7eda20f70c88efa594938e4c3a347676 (patch) | |
tree | 5b7aa4d26da9aa589ea1d684a0ee4e8e7d2a2d48 | |
parent | b39cd00f07e8df11c5446fb35da490ef85f12821 (diff) | |
download | cygnal-65416cca7eda20f70c88efa594938e4c3a347676.tar.gz cygnal-65416cca7eda20f70c88efa594938e4c3a347676.tar.bz2 cygnal-65416cca7eda20f70c88efa594938e4c3a347676.zip |
[arm] remove libc/sys/arm/sys/param.h
The Arm sys/param.h does not define anything differently to the
generic sys/param.h, but fails to define some things that that file
provides. There does not appear to be any reason to keep this version
and we should revert to using the common version.
-rw-r--r-- | newlib/libc/sys/arm/sys/param.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/newlib/libc/sys/arm/sys/param.h b/newlib/libc/sys/arm/sys/param.h deleted file mode 100644 index 5b9464cca..000000000 --- a/newlib/libc/sys/arm/sys/param.h +++ /dev/null @@ -1,25 +0,0 @@ -/* ARM configuration file; HZ is 100 rather than the default 60 */ - -#ifndef _SYS_PARAM_H -# define _SYS_PARAM_H - -#include <machine/param.h> -#include <machine/endian.h> - -#ifndef NBBY -# define NBBY 8 /* number of bits in a byte */ -#endif -#ifndef HZ -# define HZ (60) -#endif -#ifndef NOFILE -# define NOFILE (60) -#endif -#ifndef PATHSIZE -# define PATHSIZE (1024) -#endif - -#define MAX(a,b) ((a) > (b) ? (a) : (b)) -#define MIN(a,b) ((a) < (b) ? (a) : (b)) - -#endif |