Browse Source

Fix missing header warnings (alloca.h) on Sun Os & Tru64.

experimental/threaded
Ilia Alshanetsky 23 years ago
parent
commit
b03d1d6032
  1. 8
      TSRM/tsrm_config_common.h

8
TSRM/tsrm_config_common.h

@ -14,11 +14,13 @@
# include <sys/param.h>
#endif
#if HAVE_ALLOCA_H && !defined(_ALLOCA_H)
# include <alloca.h>
#endif
/* AIX requires this to be the first thing in the file. */
#ifndef __GNUC__
# if HAVE_ALLOCA_H
# include <alloca.h>
# else
# ifndef HAVE_ALLOCA_H
# ifdef _AIX
#pragma alloca
# else

Loading…
Cancel
Save