diff --git a/lib/libc/README b/lib/libc/README index b070487546f0..c4458cef9b87 100644 --- a/lib/libc/README +++ b/lib/libc/README @@ -1,4 +1,4 @@ - $NetBSD: README,v 1.6 2017/01/12 00:38:25 riastradh Exp $ + $NetBSD: README,v 1.7 2017/02/08 13:31:36 riastradh Exp $ libc: The C library. @@ -209,13 +209,8 @@ compiled with the old signature, will continue to use the old symbol. The source file src/lib/libc/compat/gen/compat_time.c includes "namespace.h", , and , but suppresses the normal declaration of `time' in by defining - __LIBC12_SOURCE__. Instead, - (src/lib/libc/compat/include/time.h) declares `time' with the - effective old signature: - - int32_t time(int32_t *); - - Then compat_time.c defines `time' normally: + __LIBC12_SOURCE__ and thus gets it from + instead. Then compat_time.c defines `time' normally: int32_t time(int32_t *t)