Addition of tmpnam system function.

This commit is contained in:
carl 2019-03-17 22:23:18 +08:00
parent 91adc2849b
commit da71e5a018

View file

@ -0,0 +1,16 @@
/* Copyright (c) 2019. See the file License in
* the root directory for more information.
*
* Created on: 2019-03-13
*
*/
#include <stdio.h>
/* This has been placed here, because on some famous platforms, this
* call is completely broken (e.g Windows up to recent versions of CRT)
*/
char* sys_tmpnam(char *buffer)
{
return tmpnam(buffer);
}