1 /* 2 * Copyright (c) 2010 High Performance Computing Center Stuttgart, 3 * University of Stuttgart. All rights reserved. 4 * $COPYRIGHT$ 5 * 6 * Additional copyrights may follow 7 * 8 * $HEADER$ 9 */ 10 11 #ifndef OPAL_SOCKET_H 12 #define OPAL_SOCKET_H 13 14 #include "opal_config.h" 15 16 #ifndef OPAL_WIN_COMPAT_H 17 #error This file is supposed to be included only from win_compat.h 18 #endif /* OPAL_WIN_COMPAT_H */ 19 20 21 BEGIN_C_DECLS 22 23 OPAL_DECLSPEC int create_socketpair(int d, int type, int protocol, int sv[2]); 24 25 END_C_DECLS 26 27 #endif /* OPAL_SOCKET_H */