| 95 | struct tempfile *create_tempfile_mode(const char *path, int mode); |
| 96 | |
| 97 | static inline struct tempfile *create_tempfile(const char *path) |
| 98 | { |
| 99 | return create_tempfile_mode(path, 0666); |
| 100 | } |
| 101 | |
| 102 | /* |
| 103 | * Register an existing file as a tempfile, meaning that it will be |
no test coverage detected