summaryrefslogtreecommitdiff
path: root/src/nice.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-05-01 20:51:16 +0000
committerJim Meyering <jim@meyering.net>1997-05-01 20:51:16 +0000
commit9080de09fc88d2ec30c3ef5dc18cba6fcfcc2ad3 (patch)
tree0c3c4dadd88daf67af12a61c574beb2052c521e7 /src/nice.c
parent44848c0887c0329a56a3b9120aa868d7aa0a4e7c (diff)
downloadcoreutils-9080de09fc88d2ec30c3ef5dc18cba6fcfcc2ad3.tar.xz
indent cpp-directives
Diffstat (limited to 'src/nice.c')
-rw-r--r--src/nice.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nice.c b/src/nice.c
index 94e49dad8..a2d4d94a9 100644
--- a/src/nice.c
+++ b/src/nice.c
@@ -26,8 +26,8 @@
#include <getopt.h>
#include <sys/types.h>
#ifndef NICE_PRIORITY
-#include <sys/time.h>
-#include <sys/resource.h>
+# include <sys/time.h>
+# include <sys/resource.h>
#endif
#include "system.h"
@@ -35,9 +35,9 @@
#include "error.h"
#ifdef NICE_PRIORITY
-#define GET_PRIORITY() nice (0)
+# define GET_PRIORITY() nice (0)
#else
-#define GET_PRIORITY() getpriority (PRIO_PROCESS, 0)
+# define GET_PRIORITY() getpriority (PRIO_PROCESS, 0)
#endif
static int isinteger __P ((char *s));