mirror of
https://github.com/diegocr/libnix.git
synced 2026-09-11 19:25:43 +00:00
13 lines
245 B
C
13 lines
245 B
C
#include <dos/dos.h>
|
|
#include <utility/tagitem.h>
|
|
#include <proto/dos.h>
|
|
|
|
int system(const char *string)
|
|
{ static struct TagItem notags[]={ { TAG_END,0 } };
|
|
|
|
if(!string)
|
|
return 1;
|
|
else
|
|
return SystemTagList((char *)string,notags);
|
|
}
|