PostgreSQL Source Code git master
un.h
Go to the documentation of this file.
1/*
2 * src/include/port/win32/sys/un.h
3 */
4#ifndef WIN32_SYS_UN_H
5#define WIN32_SYS_UN_H
6
7/*
8 * Windows defines this structure in <afunix.h>, but not all tool chains have
9 * the header yet, so we define it here for now.
10 */
12{
13 unsigned short sun_family;
14 char sun_path[108];
15};
16
17#endif
Definition: un.h:12
unsigned short sun_family
Definition: un.h:13
char sun_path[108]
Definition: un.h:14