mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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
|
|
|