| 372 | #ifndef HAS_NO_MKSTEMP |
| 373 | #ifdef _MSC_VER |
| 374 | int |
| 375 | mkstemp(char *template) |
| 376 | { |
| 377 | int err; |
| 378 | |
| 379 | err = _mktemp_s(template, strlen(template) + 1); |
| 380 | if( err != 0 ) |
| 381 | return -1; |
| 382 | return _open(template, |
| 383 | _O_RDWR | _O_BINARY | _O_TEMPORARY | _O_CREAT, |
| 384 | _S_IREAD | _S_IWRITE); |
| 385 | } |
| 386 | #endif /* _MSC_VER */ |
| 387 | #endif /* HAS_NO_MKSTEMP */ |
| 388 | #endif /* MAKEDEFS_C || FOR_RUNTIME */ |