1
0
mirror of https://github.com/Yubico/yubico-pam.git synced 2025-02-07 18:54:20 +01:00

Fix implicit declaration warning of mkostemp

mkostemp() requires the _GNU_SOURCE feature test macro.
See man 3 mkostemp.
This commit is contained in:
Tero Paloheimo 2019-01-01 21:53:24 +02:00
parent 3d24e8fd02
commit be2fdfdada

View File

@ -28,6 +28,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>