libarchive: Define O_CLOEXEC when missing

Do this in archive_random.c as we do in several other sources already.
This commit is contained in:
Brad King 2015-10-21 14:14:54 -04:00
parent 832fe4b133
commit 61a0251e82
1 changed files with 4 additions and 0 deletions

View File

@ -62,6 +62,10 @@ static void arc4random_buf(void *, size_t);
#include <wincrypt.h>
#endif
#ifndef O_CLOEXEC
#define O_CLOEXEC 0
#endif
/*
* Random number generator function.
* This simply calls arc4random_buf function if the platform provides it.