| 234 | */ |
| 235 | |
| 236 | string const * path_tmpdir() |
| 237 | { |
| 238 | static string buffer[ 1 ]; |
| 239 | static int have_result; |
| 240 | if ( !have_result ) |
| 241 | { |
| 242 | string_new( buffer ); |
| 243 | path_get_temp_path_( buffer ); |
| 244 | have_result = 1; |
| 245 | } |
| 246 | return buffer; |
| 247 | } |
| 248 | |
| 249 | |
| 250 | /* |
no test coverage detected