1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-02 15:29:33 +00:00

Added an OBJ_HAS_DBGINFO macro.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5202 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2011-08-18 10:08:56 +00:00
parent e53f4fa163
commit b76fc52c1b

View File

@ -53,6 +53,7 @@
/* Flag bits */
#define OBJ_FLAGS_DBGINFO 0x0001 /* File has debug info */
#define OBJ_HAS_DBGINFO(x) (((x) & OBJ_FLAGS_DBGINFO) != 0)