From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1433 invoked by alias); 26 Jul 2019 15:25:08 -0000 Mailing-List: contact newlib-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: newlib-cvs-owner@sourceware.org Received: (qmail 1390 invoked by uid 9007); 26 Jul 2019 15:25:07 -0000 Date: Fri, 26 Jul 2019 15:25:00 -0000 Message-ID: <20190726152507.1389.qmail@sourceware.org> Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Richard Earnshaw To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] [arm] remove libc/sys/arm/sys/param.h X-Act-Checkin: newlib-cygwin X-Git-Author: Richard Earnshaw X-Git-Refname: refs/heads/master X-Git-Oldrev: b39cd00f07e8df11c5446fb35da490ef85f12821 X-Git-Newrev: 65416cca7eda20f70c88efa594938e4c3a347676 X-SW-Source: 2019-q3/txt/msg00008.txt.bz2 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=65416cca7eda20f70c88efa594938e4c3a347676 commit 65416cca7eda20f70c88efa594938e4c3a347676 Author: Richard Earnshaw Date: Fri Jul 26 16:08:55 2019 +0100 [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. Diff: --- newlib/libc/sys/arm/sys/param.h | 25 ------------------------- 1 file changed, 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 5b9464c..0000000 --- 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 -#include - -#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