From 5015c1eb9a07b2f8351249eac62ab1fe55f03395 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Mon, 11 Jun 2007 17:46:50 +0200 Subject: inotail.c/.h: Implement is_digit to save some bytes of ctype.h inclusion --- inotail.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'inotail.c') diff --git a/inotail.c b/inotail.c index bb27702..075bb5d 100644 --- a/inotail.c +++ b/inotail.c @@ -30,7 +30,6 @@ #include #include #include -#include #include #include @@ -451,7 +450,7 @@ int main(int argc, char **argv) } else if (*optarg == '-') optarg++; - if (!isdigit(*optarg)) { + if (!is_digit(*optarg)) { fprintf(stderr, "Invalid number of lines: %s\n", optarg); exit(EXIT_FAILURE); } -- cgit v1.2.3-54-g00ecf index : net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArd Biesheuvel <ard.biesheuvel@linaro.org>2015-10-08 20:02:02 +0100
committerCatalin Marinas <catalin.marinas@arm.com>2015-10-12 16:19:33 +0100
commitd4dddfdbbc75f46d2cbab4e9f421999452617d64 (patch)
tree5a7ddde34abeb1d4eb1ac16d9d45544eff00beb2 /arch/arm64/mm/cache.S
parentcb50ce324e72bfd5d191d0a834a0ead1a08666b7 (diff)
arm64/efi: remove /chosen/linux, uefi-stub-kern-ver DT property
With the stub to kernel interface being promoted to a proper interface so that other agents than the stub can boot the kernel proper in EFI mode, we can remove the linux,uefi-stub-kern-ver field, considering that its original purpose was to prevent this from happening in the first place. Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Reviewed-by: Matt Fleming <matt.fleming@intel.com> Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Diffstat (limited to 'arch/arm64/mm/cache.S')