This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/h/mem.h

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