1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- Modified the socket functions which now take parameters to constant

pointers.


git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14740 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2004-09-29 14:31:57 +00:00
parent a7e0bc8e16
commit 64f39b51ae
4 changed files with 8 additions and 8 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: socket_sendto.c,v 1.1.1.1 2004-07-26 16:31:20 obarthel Exp $
* $Id: socket_sendto.c,v 1.2 2004-09-29 14:31:57 obarthel Exp $
*
* :ts=4
*
@ -48,7 +48,7 @@
/****************************************************************************/
int
sendto(int sockfd,void *buff,int len,int flags,struct sockaddr *to,int tolen)
sendto(int sockfd,const void *buff,int len,int flags,struct sockaddr *to,int tolen)
{
struct fd * fd;
int result = -1;