Fix some formatting
[oweals/busybox.git] / sed.c
diff --git a/sed.c b/sed.c
index 7fb906a158e14ba82d47be55f683cdd6ed2873a6..95aad79e8aec80689f52baf98250b3f64ee1057a 100644 (file)
--- a/sed.c
+++ b/sed.c
@@ -2,7 +2,7 @@
  * sed.c - very minimalist version of sed
  *
  * Copyright (C) 1999,2000 by Lineo, inc.
- * Written by Mark Whitley <markw@lineo.com>, <markw@enol.com>
+ * Written by Mark Whitley <markw@lineo.com>, <markw@codepoet.org>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
 #include <string.h> /* for strdup() */
 #include <errno.h>
 #include <ctype.h> /* for isspace() */
+#include <stdlib.h>
 #include "busybox.h"
 
 /* externs */
+extern void xregcomp(regex_t *preg, const char *regex, int cflags);
 extern int optind; /* in unistd.h */
 extern char *optarg; /* ditto */