/* ==== uio.h ============================================================
 * Copyright (c) 1994 by Chris Provenzano, proven@athena.mit.edu	
 *
 * Description : Correct Linux header file.
 */

#ifndef _PTHREAD_SOCKET_H_
#define _PTHREAD_SOCKET_H_

#include <linux/socket.h>
#include <pthread/posix.h>

/* 
 * Functions
 */

__BEGIN_DECLS

int			accept			__P((int, struct sockaddr *, int *));
int			bind			__P((int, const struct sockaddr *, int));
int			connect			__P((int, const struct sockaddr *, int));
int			listen			__P((int, int));
int			socket			__P((int, int, int));

__END_DECLS

#endif
