From ffda21b7ba451b8fd874e9c8c2162c55053caa1e Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Tue, 18 Jan 2022 09:01:03 -0500 Subject: [Feature #18491] Drop support for HP-UX IA64 support was dropped in ticket #15894, so we can drop support for HP-UX. --- vsnprintf.c | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'vsnprintf.c') diff --git a/vsnprintf.c b/vsnprintf.c index 8bfa0c1656..cfb8365caa 100644 --- a/vsnprintf.c +++ b/vsnprintf.c @@ -101,23 +101,12 @@ # endif #endif -#if defined(__hpux) && !defined(__GNUC__) && !defined(__STDC__) -#define const -#endif - #if defined(sgi) #undef __const #define __const #endif /* People who don't like const sys_error */ #include -#if defined(__hpux) && !defined(__GNUC__) || defined(__DECC) -#include -#endif - -#if !defined(__CYGWIN32__) && defined(__hpux) && !defined(__GNUC__) -#include -#endif #ifndef NULL #define NULL 0 @@ -251,9 +240,7 @@ BSD__sfvwrite(register FILE *fp, register struct __suio *uio) if ((len = uio->uio_resid) == 0) return (0); -#ifndef __hpux #define MIN(a, b) ((a) < (b) ? (a) : (b)) -#endif #define COPY(n) (void)memcpy((void *)fp->_p, (void *)p, (size_t)(n)) iov = uio->uio_iov; -- cgit v1.2.1