| 242 | */ |
| 243 | |
| 244 | string const * path_tmpdir() |
| 245 | { |
| 246 | static string buffer[ 1 ]; |
| 247 | static int have_result; |
| 248 | if ( !have_result ) |
| 249 | { |
| 250 | string_new( buffer ); |
| 251 | path_get_temp_path_( buffer ); |
| 252 | have_result = 1; |
| 253 | } |
| 254 | return buffer; |
| 255 | } |
| 256 | |
| 257 | |
| 258 | /* |
no test coverage detected