UNPKG

@bugsplat/sysvelf

Version:

An Executable and Linkable Format (ELF) parser.

14 lines (13 loc) 259 B
/** * Type constants. * * System V Application Binary Interface, section 4 (pg. 49) * http://www.sco.com/developers/devspecs/gabi41.pdf */ module.exports = { NONE : 0, RELOCATABLE : 1, EXECUTABLE : 2, DYNAMIC : 3, CORE : 4 }