aboutsummaryrefslogtreecommitdiffhomepage
path: root/obj/obj.h
diff options
context:
space:
mode:
Diffstat (limited to 'obj/obj.h')
-rw-r--r--obj/obj.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/obj/obj.h b/obj/obj.h
index 59769ff..77da99a 100644
--- a/obj/obj.h
+++ b/obj/obj.h
@@ -22,10 +22,10 @@ enum relockind {
enum section { Snone, Stext, Srodata, Sdata, Sbss };
void objini(const char *infile, const char *outfile);
-void objdeffunc(const char *nam, bool globl, uint off, uint siz);
-enum section objhassym(const char *name, uint *off);
-uint objnewdat(const char *name, enum section, bool globl, uint siz, uint align);
-void objreloc(const char *sym, enum relockind, enum section, uint off, vlong addend);
+void objdeffunc(internstr nam, bool globl, uint off, uint siz);
+enum section objhassym(internstr name, uint *off);
+uint objnewdat(internstr name, enum section, bool globl, uint siz, uint align);
+void objreloc(internstr sym, enum relockind, enum section, uint off, vlong addend);
void objfini(void);
/* vim:set ts=3 sw=3 expandtab: */