Ignore:
Timestamp:
Aug 13, 2025, 1:34:19 AM (3 months ago)
Author:
bird
Message:

lib/nt,kmk: Fixed around rm/unlink semantics and general support for long file names in lib/nt.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/kmkbuiltin/mscfakes.c

    r3636 r3682  
    4444#undef utimes
    4545#undef lutimes
     46#include "nt/ntmkdirat.h"
     47#undef mkdir
     48#undef mkdirat
    4649
    4750#include "console.h"
     
    314317int mkdir_msc(const char *path, mode_t mode)
    315318{
     319#if 0
    316320    int rc = (mkdir)(path);
    317321    if (rc)
     
    328332    }
    329333    return rc;
     334#else
     335    return birdMkDir(path, mode);
     336#endif
    330337}
    331338
Note: See TracChangeset for help on using the changeset viewer.