X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=support%2FUtil%2FMySystem.h;h=7309fddcf0d106689258ef7e34f4c0618e7f3114;hb=f98f0bb012d04593bdeb00a0c18dc281bae1e9bb;hp=93eb07f27e7e0ab7c73c9ccfc084247bf0516a4d;hpb=a6fca54fef56ee58479ea160f6d229de445337c1;p=fw%2Fsdcc diff --git a/support/Util/MySystem.h b/support/Util/MySystem.h index 93eb07f2..7309fddc 100644 --- a/support/Util/MySystem.h +++ b/support/Util/MySystem.h @@ -22,11 +22,15 @@ what you give them. Help stamp out software-hoarding! -------------------------------------------------------------------------*/ -#if !defined(__MYSYSTEM_H) +#ifndef __MYSYSTEM_H #define __MYSYSTEM_H -int my_system (const char *cmd) ; +#include +#include "SDCCset.h" -extern char *ExePathList[] ; // List of paths to try to locate exeucatbles +extern set *binPathSet; /* set of binary paths */ + +int my_system(const char *cmd); +FILE *my_popen(const char *cmd); #endif