q/src/macho/SectionFlags.go
Eduard Urbach 4d3b47df32
All checks were successful
/ test (push) Successful in 15s
Added a section for machine code instructions in Mach-O
2025-07-09 11:52:17 +02:00

7 lines
No EOL
98 B
Go

package macho
type SectionFlags uint32
const (
FlagPureInstructions SectionFlags = 0x80000000
)