mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
14 lines
356 B
Plaintext
14 lines
356 B
Plaintext
$NetBSD: patch-ap,v 1.3 2008/03/31 06:18:12 cjs Exp $
|
|
|
|
--- libraries/network/include/HsNet.h.orig 2007-12-11 03:25:19.000000000 +0900
|
|
+++ libraries/network/include/HsNet.h 2008-03-31 12:36:50.000000000 +0900
|
|
@@ -139,3 +139,8 @@
|
|
}
|
|
|
|
#endif
|
|
+
|
|
+INLINE int __hsnet_socket(int domain, int type, int protocol)
|
|
+{
|
|
+ return socket(domain, type, protocol);
|
|
+}
|