/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/include/port/win32/sys/un.h
17 строк
305 B
Thomas Munro
Remove configure probes for sys/un.h and struct sockaddr_un.
13 авг 2022, 15:09
13 авг 2022, 15:09
077bf2f
Код
Авторство
О чём код?
/* * src/include/port/win32/sys/un.h */ #ifndef WIN32_SYS_UN_H #define WIN32_SYS_UN_H /* * Windows defines this structure in <afunix.h>, but not all tool chains have * the header yet, so we define it here for now. */ struct sockaddr_un { unsigned short sun_family; char sun_path[108]; }; #endif