Skip to content

Commit

Permalink
Fix missing header warnings (alloca.h) on Sun Os & Tru64.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilia Alshanetsky committed Nov 11, 2002
1 parent 4a5cb37 commit b03d1d6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions TSRM/tsrm_config_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b03d1d6

Please sign in to comment.