aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--watch.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/watch.c b/watch.c
index 0a135ca..49d2748 100644
--- a/watch.c
+++ b/watch.c
@@ -20,18 +20,19 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#include <sys/ioctl.h>
+#include <sys/time.h>
+
+#include <curses.h>
#include <err.h>
+#include <errno.h>
+#include <limits.h>
+#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
-#include <unistd.h>
#include <string.h>
#include <time.h>
-#include <signal.h>
-#include <curses.h>
-#include <errno.h>
-#include <limits.h>
-#include <sys/ioctl.h>
-#include <sys/time.h>
+#include <unistd.h>
static char buffer[_POSIX_MAX_INPUT];
static char *copyright = "(c) 2003, 2004 demon <demon@vhost.dyndns.org>";