FreeBASIC  0.91.0
sys_run.c
Go to the documentation of this file.
1 /* RUN function */
2 
3 #include "fb.h"
4 
5 FBCALL int fb_Run( FBSTRING *program, FBSTRING *args )
6 {
7  if( fb_ExecEx( program, args, FALSE ) != -1 )
8  fb_End( 0 );
9 
10  return -1;
11 }