summaryrefslogtreecommitdiff
path: root/src/libposixplz/mkLtemp.c
blob: 5c9ccb0afc91dacf1a8045b9115aa6b759eb5d6c (plain)
1
2
3
4
5
6
7
8
9
10
/* ISC license. */

#include <unistd.h>

#include <skalibs/posixplz.h>

int mkLtemp (char const *src, char *dst)
{
  return mklinktemp(src, dst, &link) ;
}