1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-18 04:29:09 +03:00
Files
postgres/src/port/link.c
Bruce Momjian ca3b37487b Update copyright for 2021
Backpatch-through: 9.5
2021-01-02 13:06:25 -05:00

36 lines
705 B
C

/*-------------------------------------------------------------------------
*
* link.c
*
* Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* src/port/link.c
*
*-------------------------------------------------------------------------
*/
#include "c.h"
#ifdef WIN32
int
link(const char *src, const char *dst)
{
/*
* CreateHardLinkA returns zero for failure
* https://docs.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-createhardlinka
*/
if (CreateHardLinkA(dst, src, NULL) == 0)
{
_dosmaperr(GetLastError());
return -1;
}
else
return 0;
}
#endif