diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2018-12-08 15:10:09 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2018-12-08 15:10:09 +0000 |
commit | 30d0c173d87b92a9ad2f3c1b643463a894abb1d9 (patch) | |
tree | 544c0917404a5ee3bf1c5f4faceeb51cff084b8d /src/libposixplz/mkLtemp.c | |
parent | 2f017fbdd689e025437783cc8d675a7d304b37c3 (diff) | |
download | skalibs-30d0c173d87b92a9ad2f3c1b643463a894abb1d9.tar.xz |
Really add mkfootemp and autosurf, I guess ?
Diffstat (limited to 'src/libposixplz/mkLtemp.c')
-rw-r--r-- | src/libposixplz/mkLtemp.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/libposixplz/mkLtemp.c b/src/libposixplz/mkLtemp.c new file mode 100644 index 0000000..5c9ccb0 --- /dev/null +++ b/src/libposixplz/mkLtemp.c @@ -0,0 +1,10 @@ +/* ISC license. */ + +#include <unistd.h> + +#include <skalibs/posixplz.h> + +int mkLtemp (char const *src, char *dst) +{ + return mklinktemp(src, dst, &link) ; +} |