home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 387b.lha / dice_v2.02 / lib / stdio / tmpnam.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-30  |  232 b   |  21 lines

  1.  
  2. /*
  3.  *  TMPNAM()
  4.  */
  5.  
  6. #include <stdio.h>
  7.  
  8. char *
  9. tmpnam(buf)
  10. char *buf;
  11. {
  12.     static char Buf[L_tmpnam];
  13.     static long i;
  14.  
  15.     if (buf == NULL)
  16.     buf = Buf;
  17.     sprintf(buf, "T:%08lx-%ld", FindTask(NULL), i++);
  18.     return(buf);
  19. }
  20.  
  21.