summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtchang%redhat.com <devnull@localhost>2006-02-07 01:29:02 +0000
committerwtchang%redhat.com <devnull@localhost>2006-02-07 01:29:02 +0000
commit1e3d017363114f720bffbe5deb3a126351aec384 (patch)
treeeb7b7226a705886fe7b8df1994a7cc58694abc19
parent768cb3f00324fc38adb30ce7cf49f97de3bc7fe5 (diff)
downloadnspr-hg-1e3d017363114f720bffbe5deb3a126351aec384.tar.gz
Bugzilla bug 326110: use PR_IMPLEMENT with two exported functions.
Modified files: prfile.c ptio.c Tag: NSPR_4_6_BRANCH
-rw-r--r--pr/src/io/prfile.c4
-rw-r--r--pr/src/pthreads/ptio.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/pr/src/io/prfile.c b/pr/src/io/prfile.c
index d91bffa2..cdde160b 100644
--- a/pr/src/io/prfile.c
+++ b/pr/src/io/prfile.c
@@ -412,7 +412,7 @@ PR_IMPLEMENT(PRFileDesc*) PR_OpenFile(
return fd;
}
-PRInt32 PR_GetSysfdTableMax(void)
+PR_IMPLEMENT(PRInt32) PR_GetSysfdTableMax(void)
{
#if defined(XP_UNIX) && !defined(AIX) && !defined(NEXTSTEP) && !defined(QNX)
struct rlimit rlim;
@@ -445,7 +445,7 @@ PRInt32 PR_GetSysfdTableMax(void)
#endif
}
-PRInt32 PR_SetSysfdTableSize(int table_size)
+PR_IMPLEMENT(PRInt32) PR_SetSysfdTableSize(int table_size)
{
#if defined(XP_UNIX) && !defined(AIX) && !defined(NEXTSTEP) && !defined(QNX)
struct rlimit rlim;
diff --git a/pr/src/pthreads/ptio.c b/pr/src/pthreads/ptio.c
index 7a4ce96f..1c2974aa 100644
--- a/pr/src/pthreads/ptio.c
+++ b/pr/src/pthreads/ptio.c
@@ -4583,7 +4583,7 @@ PR_IMPLEMENT(PRStatus) PR_UnlockFile(PRFileDesc *fd)
* defined here for historical (or hysterical) reasons.
*/
-PRInt32 PR_GetSysfdTableMax(void)
+PR_IMPLEMENT(PRInt32) PR_GetSysfdTableMax(void)
{
#if defined(XP_UNIX) && !defined(AIX) && !defined(VMS)
struct rlimit rlim;
@@ -4597,7 +4597,7 @@ PRInt32 PR_GetSysfdTableMax(void)
#endif
}
-PRInt32 PR_SetSysfdTableSize(PRIntn table_size)
+PR_IMPLEMENT(PRInt32) PR_SetSysfdTableSize(PRIntn table_size)
{
#if defined(XP_UNIX) && !defined(AIX) && !defined(VMS)
struct rlimit rlim;