| 504 | } |
| 505 | |
| 506 | int git_mkstemp_mode(char *pattern, int mode) |
| 507 | { |
| 508 | /* mkstemp is just mkstemps with no suffix */ |
| 509 | return git_mkstemps_mode(pattern, 0, mode); |
| 510 | } |
| 511 | |
| 512 | int xmkstemp_mode(char *filename_template, int mode) |
| 513 | { |
no test coverage detected