SourcePoint Intel Help

Table of Contents

#undef

Remove a debug alias definition.

Syntax

#undef alias-name

Where:

alias-name

specifies a previously defined alias.

Discussion

The #undef command is used to remove an alias definition that was created with the #define command. ย The remove command can also be used to remove multiple alias definitions.

Example

Command input:

#define ld load c:\src\targdev ย ย ย ย ย ย // define alias
#undef ld ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย // remove alias

Related Topics: