diff options
author | laforge <laforge@6dc7ffe9-61d6-0310-9af1-9938baff3ed1> | 2006-09-25 21:49:08 +0000 |
---|---|---|
committer | laforge <laforge@6dc7ffe9-61d6-0310-9af1-9938baff3ed1> | 2006-09-25 21:49:08 +0000 |
commit | 41423de5864e325663f76cc9336f8d0ba68a3c83 (patch) | |
tree | 3e94e7d4be89b41edef3dda405ebee0f9d81bf58 /firmware/scripts | |
parent | 89c40594e76db780d1b72795901a8e8754810a62 (diff) |
- fix build process of USB string header files (make it work with first 'make' run)
git-svn-id: https://svn.openpcd.org:2342/trunk@229 6dc7ffe9-61d6-0310-9af1-9938baff3ed1
Diffstat (limited to 'firmware/scripts')
-rw-r--r-- | firmware/scripts/usbstring.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/firmware/scripts/usbstring.c b/firmware/scripts/usbstring.c index 5348e66..5724b40 100644 --- a/firmware/scripts/usbstring.c +++ b/firmware/scripts/usbstring.c @@ -26,6 +26,8 @@ */ #include <sys/types.h> +#include <unistd.h> +#include <stdlib.h> #include <stdio.h> #include <string.h> @@ -194,4 +196,6 @@ int main(int argc, char **argv) printf("\t(struct usb_descriptor_header *) &string%d,\n", j); printf("};\n\n"); printf("#endif /* _USB_STRINGS_H */\n"); + + exit(0); } |