aboutsummaryrefslogtreecommitdiff
path: root/src/include/stdlib.h
diff options
context:
space:
mode:
authorMichael Brown <mcb30@etherboot.org>2006-12-08 01:23:11 +0000
committerMichael Brown <mcb30@etherboot.org>2006-12-08 01:23:11 +0000
commitf3d817d512f0f0a33f3476c11da657f7bbe3c2f5 (patch)
tree009271f20f0808f79bf75243291e36b2e621aeaa /src/include/stdlib.h
parente106a39ce8440725f058c563a6874c1d923a97bb (diff)
downloadipxe-f3d817d512f0f0a33f3476c11da657f7bbe3c2f5.zip
ipxe-f3d817d512f0f0a33f3476c11da657f7bbe3c2f5.tar.gz
ipxe-f3d817d512f0f0a33f3476c11da657f7bbe3c2f5.tar.bz2
Added execv() and system().
Diffstat (limited to 'src/include/stdlib.h')
-rw-r--r--src/include/stdlib.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/stdlib.h b/src/include/stdlib.h
index a7dd1d8..d71ee1a 100644
--- a/src/include/stdlib.h
+++ b/src/include/stdlib.h
@@ -5,6 +5,7 @@ extern unsigned long strtoul ( const char *p, char **endp, int base );
extern void * realloc ( void *old_ptr, size_t new_size );
extern void * malloc ( size_t size );
extern void free ( void *ptr );
+extern int system ( const char *command );
/**
* Allocate cleared memory