home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume17 / e2 / part01 / get_temp.c < prev    next >
C/C++ Source or Header  |  1989-02-08  |  338b  |  21 lines

  1. #include "e.h"
  2.  
  3. /* 
  4.  * get_temp()
  5.  *
  6.  * Get ourselves a temporary file for the new history. 
  7.  *
  8.  */
  9. void
  10. get_temp()
  11. {
  12.     if (mktemp(tmp_file) != tmp_file){
  13.         e_error("Could not mktemp.");
  14.     }
  15.  
  16.     if ((tmp_fp = fopen(tmp_file, "w")) == NULL){
  17.         e_error("Could not open temporary file '%s'.", tmp_file);
  18.     }
  19.     return;
  20. }
  21.