diff options
author | Aurelien Jarno <aurel32@debian.org> | 2006-03-26 17:10:13 +0000 |
---|---|---|
committer | Guillem Jover <guillem@hadrons.org> | 2008-05-06 08:54:03 +0300 |
commit | daccb6a8507c6eb35bb08177834ae15150acddab (patch) | |
tree | 56b5624688ad98557728956da8d176b0ad0f0f77 /src | |
parent | 1e28f3480721c916b89e643c5cdfceaef69ad0f1 (diff) | |
download | libbsd-daccb6a8507c6eb35bb08177834ae15150acddab.tar.gz |
Fix some c++isms
Diffstat (limited to 'src')
-rw-r--r-- | src/inet_net_pton.c | 2 | ||||
-rw-r--r-- | src/md5c.c | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/src/inet_net_pton.c b/src/inet_net_pton.c index 6381b6a..8d33156 100644 --- a/src/inet_net_pton.c +++ b/src/inet_net_pton.c @@ -211,4 +211,4 @@ inet_net_pton_ipv4(src, dst, size) * and fail to include <arpa/inet.h>. */ #undef inet_net_pton -//__weak_reference(__inet_net_pton, inet_net_pton); +/* __weak_reference(__inet_net_pton, inet_net_pton); */ @@ -37,8 +37,10 @@ __FBSDID("$FreeBSD: src/lib/libmd/md5c.c,v 1.16 2003/06/05 13:17:32 markm Exp $" #include <string.h> #endif -//#include <machine/endian.h> -//#include <sys/endian.h> +/* +#include <machine/endian.h> +#include <sys/endian.h> +*/ #include <bsd/md5.h> static void MD5Transform(u_int32_t [4], const unsigned char [64]); |