Some const-ness

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@657 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1996-08-18 23:24:09 +00:00
parent 92cbb34085
commit 0be7f5293d

View File

@@ -11,10 +11,9 @@
RCSID("$Id$");
/* Minimal implementation of inet_aton. Doesn't handle hex numbers. */
int inet_aton(char *cp, struct in_addr *adr)
int inet_aton(const char *cp, struct in_addr *adr)
{
unsigned int a, b, c, d;