summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/sysconf.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/sysconf.c')
-rw-r--r--cpukit/posix/src/sysconf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/cpukit/posix/src/sysconf.c b/cpukit/posix/src/sysconf.c
index 0e7b1e5305..c5f66f6f46 100644
--- a/cpukit/posix/src/sysconf.c
+++ b/cpukit/posix/src/sysconf.c
@@ -51,6 +51,8 @@ long sysconf(
return (long) rtems_configuration_get_maximum_processors();
case _SC_NPROCESSORS_ONLN:
return (long) rtems_get_processor_count();
+ case _SC_POSIX_26_VERSION:
+ return (long) _POSIX_26_VERSION;
#if defined(__sparc__)
case 515: /* Solaris _SC_STACK_PROT */
return 0;