reorganized so that we maintain only one interface specification

This commit is contained in:
Jeff Hill
2003-07-30 15:58:24 +00:00
parent d719a6859c
commit 44d234535e
4 changed files with 1 additions and 74 deletions
@@ -12,7 +12,6 @@
#define epicsStdioh
#include <stdio.h>
#include <stdarg.h>
#ifdef __cplusplus
extern "C" {
@@ -24,6 +23,7 @@ epicsShareFunc int epicsShareAPI epicsSnprintf(
char *str, size_t size, const char *format, ...);
epicsShareFunc int epicsShareAPI epicsVsnprintf(
char *str, size_t size, const char *format, va_list ap);
epicsShareFunc FILE * epicsShareAPI epicsTempFile ( void );
#ifdef __cplusplus
}
-28
View File
@@ -1,28 +0,0 @@
/* epicsStdio.h */
/*************************************************************************\
* Copyright (c) 2002 The University of Chicago, as Operator of Argonne
* National Laboratory.
* Copyright (c) 2002 The Regents of the University of California, as
* Operator of Los Alamos National Laboratory.
* EPICS BASE Versions 3.13.7
* and higher are distributed subject to a Software License Agreement found
* in file LICENSE that is included with this distribution.
\*************************************************************************/
#ifndef epicsStdioh
#define epicsStdioh
#include <stdio.h>
#include <stdarg.h>
#ifdef __cplusplus
extern "C" {
#endif
int epicsSnprintf ( char *str, size_t size, const char *format, ...);
int epicsVsnprintf ( char *str, size_t size, const char *format, va_list ap);
#ifdef __cplusplus
}
#endif
#endif /* epicsStdioh */
-18
View File
@@ -1,18 +0,0 @@
/*************************************************************************\
* Copyright (c) 2002 The University of Chicago, as Operator of Argonne
* National Laboratory.
* Copyright (c) 2002 The Regents of the University of California, as
* Operator of Los Alamos National Laboratory.
* EPICS BASE Versions 3.13.7
* and higher are distributed subject to a Software License Agreement found
* in file LICENSE that is included with this distribution.
\*************************************************************************/
#ifndef epicsStdioh
#define epicsStdioh
#include <stdio.h>
#define epicsVsnprintf vsnprintf
#define epicsSnprintf snprintf
#endif /* epicsStdioh */
-27
View File
@@ -1,27 +0,0 @@
/*************************************************************************\
* Copyright (c) 2002 The University of Chicago, as Operator of Argonne
* National Laboratory.
* Copyright (c) 2002 The Regents of the University of California, as
* Operator of Los Alamos National Laboratory.
* EPICS BASE Versions 3.13.7
* and higher are distributed subject to a Software License Agreement found
* in file LICENSE that is included with this distribution.
\*************************************************************************/
#ifndef epicsStdioh
#define epicsStdioh
#include <stdio.h>
#include <stdarg.h>
#ifdef __cplusplus
extern "C" {
#endif
int epicsSnprintf(char *str, size_t size, const char *format, ...);
int epicsVsnprintf(char *str, size_t size, const char *format, va_list ap);
#ifdef __cplusplus
}
#endif
#endif /* epicsStdioh */