Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 13 Nov 2002 14:20:52 -0500
From:      Craig Rodrigues <rodrigc@attbi.com>
To:        freebsd-standards@freebsd.org
Subject:   msgsnd() improperly prototyped
Message-ID:  <20021113142052.A10703@attbi.com>

next in thread | raw e-mail | index | archive | help
Hi,

According to:
http://www.opengroup.org/onlinepubs/007904975/basedefs/sys/msg.h.html

the prototype for msgsnd() should be:

int       msgsnd(int, const void *, size_t, int);

but FreeBSD's prototype in <sys/msg.h> is missing the const qualifier:

int msgsnd(int, void *, size_t, int);


I'd like to fix this and submit a patch.  Where is the implementation of this 
function?
I can fix the header file and man page, but don't know where to look
for the implementation.

-- 
Craig Rodrigues        
http://www.gis.net/~craigr    
rodrigc@attbi.com

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-standards" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20021113142052.A10703>