s6

Mirror/fork of https://skarnet.org/software/s6/
git clone https://ccx.te2000.cz/git/s6
Log | Files | Refs | README | LICENSE

compat.h (324B)


      1 /* ISC license. */
      2 
      3 #ifndef S6_COMPAT_H
      4 #define S6_COMPAT_H
      5 
      6 #include <s6/config.h>
      7 
      8 #ifdef S6_USE_EXECLINE
      9 
     10 #include <execline/execline.h>
     11 #define s6_el_semicolon(argv) el_semicolon(argv)
     12 
     13 #else
     14 
     15 extern int s6_compat_el_semicolon (char const **) ;
     16 #define s6_el_semicolon(argv) s6_compat_el_semicolon(argv)
     17 
     18 #endif
     19 
     20 #endif