Fix some formatting
[oweals/busybox.git] / ln.c
diff --git a/ln.c b/ln.c
index ead5322fa88351f8e579b1262e369b0ca6993b0e..d6bf6443af08338dafa713b96eabb53869a26bd9 100644 (file)
--- a/ln.c
+++ b/ln.c
 
 #include <stdio.h>
 #include <dirent.h>
+#include <string.h>
+#include <stdlib.h>
 #include <errno.h>
+#include <unistd.h>
 
-#define LN_SYMLINK             1
-#define LN_FORCE                       2
-#define LN_NODEREFERENCE       4
+static const int LN_SYMLINK = 1;
+static const int LN_FORCE = 2;
+static const int LN_NODEREFERENCE = 4;
 
 /*
  * linkDestName is where the link points to,