commit 3be849edd08f4723d02a077e1b36bcbdb0815a9e
parent 26aa8c9062e2658a7e628418168c31345f4da383
Author: Drew DeVault <sir@cmpwn.com>
Date: Tue, 6 Apr 2021 08:51:40 -0400
format::elf: tweak doc comment placement
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/format/elf/types.ha b/format/elf/types.ha
@@ -1,8 +1,9 @@
// An implementation of the ELF64 file format. Best accompanied with a reading
// of the ELF-64 Object Format (Version 1.5).
-//
+
// TODO:
// - Flesh out ELF32 structures
+
export def MAGIC: str = "\x7FELF";
export def EI_MAG0: uint = 0;
export def EI_MAG1: uint = 1;