Discontinue HPUX support

This commit is contained in:
Chase
2022-07-22 21:42:06 -05:00
committed by Jon Trulson
parent bd83b53d56
commit edf4319548
235 changed files with 198 additions and 6290 deletions

View File

@@ -28,22 +28,13 @@
extern "C" {
#if defined(hpux)
char __pure_virtual_called()
{
fprintf(stderr, "DtMmdb: pure virtual called\n");
exit (-1);
return 0;
}
#else
#if defined(SVR4) && defined(SC3)
void _pure_error_()
{
fprintf(stderr, "DtMmdb: pure virtual called\n");
exit (-1);
}
#else
#ifdef _AIX
#elif _AIX
void __PureVirtualCalled()
{
fprintf(stderr, "DtMmdb: pure virtual called\n");
@@ -57,8 +48,6 @@ void __pure_virtual_called()
exit (-1);
}
#endif
#endif
#endif
}