* as/z80/z80mch.c: fixed bug #1704376: missing as-z80 errors
[fw/sdcc] / support / Util / MySystem.h
index f945fe5357413622d6678e09a6e230dc2ac514d6..7309fddcf0d106689258ef7e34f4c0618e7f3114 100644 (file)
    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) ;
-FILE *my_popen (const char *cmd) ;
+#include <stdio.h>
+#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