summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/getpgrp.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/src/getpgrp.c')
-rw-r--r--cpukit/libcsupport/src/getpgrp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/libcsupport/src/getpgrp.c b/cpukit/libcsupport/src/getpgrp.c
index 208c7022f7..de372f3e8c 100644
--- a/cpukit/libcsupport/src/getpgrp.c
+++ b/cpukit/libcsupport/src/getpgrp.c
@@ -3,7 +3,7 @@
#endif
#include <unistd.h>
-#include <rtems/score/objectimpl.h>
+#include <rtems.h>
/*
* 4.3.1 Get Process Group IDs, P1003.1b-1993, p. 89
@@ -16,5 +16,5 @@ pid_t getpgrp( void )
* this will always be the local node;
*/
- return _Objects_Local_node;
+ return rtems_object_get_local_node();
}