davids5 commented on a change in pull request #4125:
URL: https://github.com/apache/incubator-nuttx/pull/4125#discussion_r667869746
##########
File path: libs/libc/unistd/lib_sysconf.c
##########
@@ -225,6 +225,11 @@ long sysconf(int name)
return 1;
#endif
+#ifdef CONFIG_CLOCK_MONOTONIC
Review comment:
Should this be in the format?
```
case _SC_MONOTONIC_CLOCK:
#ifdef CONFIG_CLOCK_MONOTONIC
return 1;
#else
return 0;
#endif
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]