55 lines
1.2 KiB
C++
55 lines
1.2 KiB
C++
/*
|
|
* mem.h Memory manipulation functions
|
|
*
|
|
* =========================================================================
|
|
*
|
|
* Open Watcom Project
|
|
*
|
|
* Copyright (c) 2002-2010 Open Watcom Contributors. All Rights Reserved.
|
|
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
|
|
*
|
|
* This file is automatically generated. Do not edit directly.
|
|
*
|
|
* =========================================================================
|
|
*/
|
|
#ifndef _MEM_H_INCLUDED
|
|
#define _MEM_H_INCLUDED
|
|
|
|
#ifndef _ENABLE_AUTODEPEND
|
|
#pragma read_only_file;
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
#ifndef _STDPTRDIFF_T_DEFINED
|
|
#define _STDPTRDIFF_T_DEFINED
|
|
namespace std {
|
|
#ifdef __HUGE__
|
|
typedef long ptrdiff_t;
|
|
#else
|
|
typedef int ptrdiff_t;
|
|
#endif
|
|
}
|
|
#endif
|
|
#ifndef _PTRDIFF_T_DEFINED
|
|
#define _PTRDIFF_T_DEFINED
|
|
#define _PTRDIFF_T_DEFINED_
|
|
using std::ptrdiff_t;
|
|
#endif
|
|
#else /* __cplusplus not defined */
|
|
#ifndef _PTRDIFF_T_DEFINED
|
|
#define _PTRDIFF_T_DEFINED
|
|
#define _PTRDIFF_T_DEFINED_
|
|
#ifdef __HUGE__
|
|
typedef long ptrdiff_t;
|
|
#else
|
|
typedef int ptrdiff_t;
|
|
#endif
|
|
#endif
|
|
#endif /* __cplusplus not defined */
|
|
|
|
#ifndef _STRING_H_INCLUDED
|
|
#include <string.h>
|
|
#endif
|
|
|
|
#endif
|