home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Applications / Python 1.3 / source code / Python / getplatform.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-17  |  95 b   |  10 lines  |  [TEXT/R*ch]

  1. #ifndef PLATFORM
  2. #define PLATFORM "unknown"
  3. #endif
  4.  
  5. char *
  6. getplatform()
  7. {
  8.     return PLATFORM;
  9. }
  10.