1 /*-------------------------------------------------------------------------
5 * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
6 * Portions Copyright (c) 1994, Regents of the University of California
12 *-------------------------------------------------------------------------
20 link(const char *src
, const char *dst
)
23 * CreateHardLinkA returns zero for failure
24 * https://docs.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-createhardlinka
26 if (CreateHardLinkA(dst
, src
, NULL
) == 0)
28 _dosmaperr(GetLastError());