home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1999 April / PCO0499.ISO / filesbbs / os2 / apach134.arj / APACH134.ZIP / src / helpers / dummy.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-17  |  244 b   |  13 lines

  1. /* this file is used by TestLib */
  2. /* the extra decl is to shutup gcc -Wmissing-prototypes */
  3. extern int foo (const char *c);
  4. int foo ( const char *c )
  5. {
  6. return *c;
  7. }
  8. int main(void) {
  9.     const char *c = '\0';
  10.     (void)foo(c);
  11.     return 0;
  12. }
  13.