SCM Repository
[smlnj] / sml / trunk / src / runtime / c-libs / smlnj-sockets / shutdown.c |
View of /sml/trunk/src/runtime/c-libs/smlnj-sockets/shutdown.c
Parent Directory
|
Revision Log
Revision 1489 -
(download)
(as text)
(annotate)
Tue May 11 19:31:06 2004 UTC (15 years, 7 months ago) by mblume
File size: 477 byte(s)
Tue May 11 19:31:06 2004 UTC (15 years, 7 months ago) by mblume
File size: 477 byte(s)
added missing socket-functionality for win32
/* shutdown.c * * COPYRIGHT (c) 1995 AT&T Bell Laboratories. */ #include "sockets-osdep.h" #include INCLUDE_SOCKET_H #include "ml-base.h" #include "ml-values.h" #include "ml-c.h" #include "cfun-proto-list.h" /* _ml_Sock_shutdown : (sock * int) -> unit */ ml_val_t _ml_Sock_shutdown (ml_state_t *msp, ml_val_t arg) { if (shutdown (REC_SELINT(arg, 0), REC_SELINT(arg, 1)) < 0) return RAISE_SYSERR(msp, sts); else return ML_unit; } /* end of _ml_Sock_shutdown */
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |