File: un.h

package info (click to toggle)
ruby-pg-query 5.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 18,248 kB
  • sloc: ansic: 149,767; ruby: 865; makefile: 3
file content (17 lines) | stat: -rw-r--r-- 305 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * 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