Use the correct data type and qualifier for signal flag.

This commit is contained in:
Matthew N. Dodd 2003-04-07 12:09:17 +00:00
parent 47e9b3ea64
commit 947193d93f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=113218
2 changed files with 2 additions and 2 deletions

View File

@ -89,7 +89,7 @@ PATH_T to = { to.p_path, emptystring, "" };
int fflag, iflag, nflag, pflag, vflag;
static int Rflag, rflag;
int info;
volatile sig_atomic_t info;
static void siginfo (int notused __unused);
enum op { FILE_TO_FILE, FILE_TO_DIR, DIR_TO_DNE };

View File

@ -42,7 +42,7 @@ typedef struct {
extern PATH_T to;
extern int fflag, iflag, nflag, pflag, vflag;
extern int info;
extern volatile sig_atomic_t info;
__BEGIN_DECLS
int copy_fifo(struct stat *, int);