1169689Skan/* VEC types for primitive types
2169689Skan   Copyright (C) 2006 Free Software Foundation, Inc.
3169689Skan
4169689SkanThis file is part of GCC.
5169689Skan
6169689SkanGCC is free software; you can redistribute it and/or modify it under
7169689Skanthe terms of the GNU General Public License as published by the Free
8169689SkanSoftware Foundation; either version 2, or (at your option) any later
9169689Skanversion.
10169689Skan
11169689SkanGCC is distributed in the hope that it will be useful, but WITHOUT ANY
12169689SkanWARRANTY; without even the implied warranty of MERCHANTABILITY or
13169689SkanFITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14169689Skanfor more details.
15169689Skan
16169689SkanYou should have received a copy of the GNU General Public License
17169689Skanalong with GCC; see the file COPYING.  If not, write to the Free
18169689SkanSoftware Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
19169689Skan02110-1301, USA.  */
20169689Skan
21169689Skan#ifndef GCC_VECPRIM_H
22169689Skan#define GCC_VECPRIM_H
23169689Skan
24169689SkanDEF_VEC_I(char);
25169689SkanDEF_VEC_ALLOC_I(char,heap);
26169689Skan
27169689SkanDEF_VEC_I(int);
28169689SkanDEF_VEC_ALLOC_I(int,heap);
29169689Skan
30169689Skan#endif /* GCC_VECPRIM_H */
31