Tagged Questions
3
votes
2answers
213 views
SAS macro include guards
In other programming languages such as C++, include guards are used to prevent multiple inclusions of the same code.
Like this in C++:
#ifndef FOO_INCLUDED
#define FOO_INCLUDED
....
#endif
Does it ...