diff options
Diffstat (limited to 'tempfile.h')
-rw-r--r-- | tempfile.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tempfile.h b/tempfile.h index d30663182d..2ee24f4380 100644 --- a/tempfile.h +++ b/tempfile.h @@ -1,6 +1,8 @@ #ifndef TEMPFILE_H #define TEMPFILE_H +#include "list.h" + /* * Handle temporary files. * @@ -81,7 +83,7 @@ */ struct tempfile { - struct tempfile *volatile next; + volatile struct volatile_list_head list; volatile sig_atomic_t active; volatile int fd; FILE *volatile fp; |