Wrap a table (bg set to black, width=80%) around the screenshot
[oweals/busybox.git] / sed.c
diff --git a/sed.c b/sed.c
index a50d8d03bfac7154883c6030a12914ce3b1a1cb5..73a9ad3ec23800392a7b1152df6e8fc03b277229 100644 (file)
--- a/sed.c
+++ b/sed.c
@@ -1,7 +1,7 @@
 /*
  * sed.c - very minimalist version of sed
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Mark Whitley <markw@lineo.com>, <markw@codepoet.org>
  *
  * This program is free software; you can redistribute it and/or modify
 #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 */