- sed -e "s/char[[:space:]]*\*[[:space:]]*argv\[\]/char **argv/g"

This commit is contained in:
Bernhard Reutner-Fischer
2007-04-04 20:52:03 +00:00
parent d9c2d5fe4f
commit febe3c4211
33 changed files with 67 additions and 67 deletions

View File

@@ -15,8 +15,8 @@
/* From <linux/vt.h> */
enum { VT_DISALLOCATE = 0x5608 }; /* free memory associated to vt */
int deallocvt_main(int argc, char *argv[]);
int deallocvt_main(int argc, char *argv[])
int deallocvt_main(int argc, char **argv);
int deallocvt_main(int argc, char **argv)
{
/* num = 0 deallocate all unused consoles */
int num = 0;