skalibs

Mirror/fork of https://skarnet.org/software/skalibs/
git clone https://ccx.te2000.cz/git/skalibs
Log | Files | Refs | README | LICENSE

mkhtemp.c (156B)


      1 /* ISC license. */
      2 
      3 #include <unistd.h>
      4 
      5 #include <skalibs/posixplz.h>
      6 
      7 int mkhtemp (char const *src, char *dst)
      8 {
      9   return mklinktemp(src, dst, &link) ;
     10 }