comparison packages/isoinfra/current/include/stdarg.h @ 115:6ed91473a1cd ecos-sw-2000-08-21

Merge from eCos master repository on 2000-08-21-22:40:54-BST
author jlarmour
date Fri, 25 Aug 2000 17:32:38 +0000
parents
children e0c0827131d1
comparison
equal deleted inserted replaced
114:5ad2b71d525e 115:6ed91473a1cd
1 #ifndef CYGONCE_ISO_STDARG_H
2 #define CYGONCE_ISO_STDARG_H
3 /*========================================================================
4 //
5 // stdarg.h
6 //
7 // ISO standard variable argument functionality
8 //
9 //========================================================================
10 //####COPYRIGHTBEGIN####
11 //
12 // -------------------------------------------
13 // The contents of this file are subject to the Red Hat eCos Public License
14 // Version 1.1 (the "License"); you may not use this file except in
15 // compliance with the License. You may obtain a copy of the License at
16 // http://www.redhat.com/
17 //
18 // Software distributed under the License is distributed on an "AS IS"
19 // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
20 // License for the specific language governing rights and limitations under
21 // the License.
22 //
23 // The Original Code is eCos - Embedded Configurable Operating System,
24 // released September 30, 1998.
25 //
26 // The Initial Developer of the Original Code is Red Hat.
27 // Portions created by Red Hat are
28 // Copyright (C) 1998, 1999, 2000 Red Hat, Inc.
29 // All Rights Reserved.
30 // -------------------------------------------
31 //
32 //####COPYRIGHTEND####
33 //========================================================================
34 //#####DESCRIPTIONBEGIN####
35 //
36 // Author(s): jlarmour
37 // Contributors:
38 // Date: 2000-04-14
39 // Purpose: This file provides the variable argument macros required
40 // by ISO C
41 // Description: This file is really provided by the compiler, although in
42 // due course we may override things here.
43 //
44 // The main purpose of this file is as a comment to the FAQ
45 // about where stdarg.h lives: it is provided by the compiler,
46 // which for current gcc can be found by looking in the
47 // include directory in the same place as the specs file
48 // which you can determine from TARGET-gcc -v,
49 // e.g. arm-elf-gcc -v
50 // Usage: #include <stdarg.h>
51 //
52 //####DESCRIPTIONEND####
53 //
54 //======================================================================
55 */
56
57 #include_next <stdarg.h>
58
59 #endif /* CYGONCE_ISO_STDARG_H multiple inclusion protection */
60
61 /* EOF stdarg.h */