1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-28 16:43:09 +00:00

Update to C99, s/__FUNCTION__/__func__/.

This commit is contained in:
David E. O'Brien 2001-12-10 05:58:28 +00:00
parent a48740b6c5
commit 36048c2e3d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=87595

View File

@ -146,7 +146,7 @@ int iconv_converter_donestub(struct iconv_converter_class *dp);
int iconv_converter_handler(module_t mod, int type, void *data);
#ifdef ICONV_DEBUG
#define ICDEBUG(format, args...) printf("%s: "format, __FUNCTION__ ,## args)
#define ICDEBUG(format, args...) printf("%s: "format, __func__ ,## args)
#else
#define ICDEBUG(format, args...)
#endif