diff options
Diffstat (limited to 'src/port')
-rw-r--r-- | src/port/explicit_bzero.c | 4 | ||||
-rw-r--r-- | src/port/pg_localeconv_r.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/port/explicit_bzero.c b/src/port/explicit_bzero.c index 1d37b119bab..53766e86e94 100644 --- a/src/port/explicit_bzero.c +++ b/src/port/explicit_bzero.c @@ -12,9 +12,11 @@ *------------------------------------------------------------------------- */ +#define __STDC_WANT_LIB_EXT1__ 1 /* needed to access memset_s() */ + #include "c.h" -#if defined(HAVE_MEMSET_S) +#if HAVE_DECL_MEMSET_S void explicit_bzero(void *buf, size_t len) diff --git a/src/port/pg_localeconv_r.c b/src/port/pg_localeconv_r.c index 4554ab84e9b..61510b2e0ea 100644 --- a/src/port/pg_localeconv_r.c +++ b/src/port/pg_localeconv_r.c @@ -3,7 +3,7 @@ * pg_localeconv_r.c * Thread-safe implementations of localeconv() * - * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * |