summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-07-14 18:53:21 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-07-14 18:53:21 +0000
commitc1956b59522074948a0d65f26f2d0c1dcf1e4dff (patch)
tree20c5624ecff353f34c6f04f997d63d79f7fba102
parentSwitch logical in conditional. (diff)
downloadrtems-c1956b59522074948a0d65f26f2d0c1dcf1e4dff.tar.bz2
Changed name of static table versions to avoid conflict.
-rw-r--r--c/src/libnetworking/lib/getprotoby.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/src/libnetworking/lib/getprotoby.c b/c/src/libnetworking/lib/getprotoby.c
index fc8de6e402..cefa5c1ff2 100644
--- a/c/src/libnetworking/lib/getprotoby.c
+++ b/c/src/libnetworking/lib/getprotoby.c
@@ -19,7 +19,7 @@ static const struct protoent prototab[] = {
* Dummy version of BSD getprotobyname()
*/
struct protoent *
-getprotobyname (const char *name)
+getprotobyname_static (const char *name)
{
int i;
@@ -34,7 +34,7 @@ getprotobyname (const char *name)
* Dummy version of BSD getprotobynumber()
*/
struct protoent *
-getprotobynumber (int proto)
+getprotobynumber_static (int proto)
{
int i;