Imports of package objfile

PathSynopsis
bufioPackage bufio implements buffered I/O. It wraps an io.Reader or io.Writer object, creating another object (Reader or Writer) that also implements the interface but provides buffering and some help for textual I/O.
cmd/internal/goobj
cmd/internal/sys
debug/dwarfPackage dwarf provides access to DWARF debugging information loaded from executable files, as defined in the DWARF 2.0 Standard at http://dwarfstd.org/doc/dwarf-2.0.0.pdf.
debug/elfPackage elf implements access to ELF object files.
debug/gosymPackage gosym implements access to the Go symbol and line number tables embedded in Go binaries generated by the gc compilers.
debug/machoPackage macho implements access to Mach-O object files.
debug/pePackage pe implements access to PE (Microsoft Windows Portable Executable) files.
debug/plan9objPackage plan9obj implements access to Plan 9 a.out object files.
encoding/binaryPackage binary implements simple translation between numbers and byte sequences and encoding and decoding of varints.
errorsPackage errors implements functions to manipulate errors.
fmtPackage fmt implements formatted I/O with functions analogous to C's printf and scanf.
golang.org/x/arch/arm/armasm
golang.org/x/arch/ppc64/ppc64asmPackage ppc64asm implements decoding of 64-bit PowerPC machine code.
golang.org/x/arch/x86/x86asmPackage x86asm implements decoding of x86 machine code.
ioPackage io provides basic interfaces to I/O primitives.
osPackage os provides a platform-independent interface to operating system functionality.
regexpPackage regexp implements regular expression search.
sortPackage sort provides primitives for sorting slices and user-defined collections.
stringsPackage strings implements simple functions to manipulate UTF-8 encoded strings.
text/tabwriterPackage tabwriter implements a write filter (tabwriter.Writer) that translates tabbed columns in input into properly aligned text.