home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / dmake40.zip / msdos / exec.h < prev    next >
C/C++ Source or Header  |  1994-10-23  |  370b  |  20 lines

  1. #ifndef _EXEC_h_
  2. #define _EXEC_h_
  3.  
  4. #ifndef ANSI
  5. #if defined(__STDC__) || defined(__TURBOC__)
  6. #define ANSI(x) x
  7. #else
  8. #define ANSI(x) ()
  9. #endif
  10. #endif
  11.  
  12. extern int  exec ANSI((int, char far *, char far *, unsigned int, char far *));
  13.  
  14. #ifndef MK_FP
  15. #define MK_FP(seg,ofs) \
  16.     ((void far *) (((unsigned long)(seg) << 16) | (unsigned)(ofs)))
  17. #endif
  18.  
  19. #endif
  20.