For an exercise at the university, we are asked to extend Minix (v2) with a system call utctime that properly calculates the leap seconds (which Minix' implementation of time does not do).
We've created a new system call, and created a new library function that wraps this system call that was added to <time.h>.
Now, we'd like to add a man-page for utctime. However, time has both a man-page in section 2 (system calls) as well as section 3 (library calls).
Should we add the utctime to both of these? Or only to 2 because it is not a standardized C library call?