mirror of https://github.com/lianthony/NT4.0
23 lines
333 B
23 lines
333 B
/*++
|
|
|
|
Copyright (c) 1989 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
os2ssrtl.h
|
|
|
|
Abstract:
|
|
|
|
Redefine names of CRT functions
|
|
|
|
--*/
|
|
|
|
#ifndef _OS2_RENAME_RUNTIME
|
|
#define _OS2_RENAME_RUNTIME
|
|
#define stricmp _stricmp
|
|
#define strnicmp _strnicmp
|
|
#define strupr _strupr
|
|
#define itoa _itoa
|
|
#define ltoa _ltoa
|
|
#endif // _OS2_RENAME_RUNTIME
|
|
|