X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rln;a=blobdiff_plain;f=rln.h;h=4897aa331ce6eb3aa502d29680099fcf14ffb335;hp=6cdef4da94772aec2f25f403e9456ac9ce1f53b5;hb=d35d0e7e982f30c5a7352c3276f9a587ace8389d;hpb=bc85b837080791b77c7aefb8a76cd6d7fb36780b diff --git a/rln.h b/rln.h index 6cdef4d..4897aa3 100644 --- a/rln.h +++ b/rln.h @@ -93,7 +93,7 @@ struct OHEADER { - long magic; // 0x0107 for .o, 0x601b for abs + long magic; // $0107 for .o, $601B for abs long tsize; long dsize; long bsize; @@ -138,12 +138,12 @@ struct OFILE { char o_name[FNLEN]; // Fixed-length names char o_arname[FNLEN]; // Name of archive this is from - struct OFILE *o_next; // Next object file + struct OFILE * o_next; // Next object file long o_tbase, o_dbase, o_bbase; // Computed bases for this ofile int o_symstart; // First sym in image is nth in out int o_flags; // Flags (see O_*) struct OHEADER o_header; // Header of this file - char *o_image; // Image of this file + char * o_image; // Image of this file }; #define new_ofile() (struct OFILE *)malloc((long)sizeof(struct OFILE)) @@ -248,7 +248,7 @@ struct HREC // Function Prototypes int doargs(int, char *[]); -char *make_string(char *); +char * make_string(char *); void put_name(struct OFILE *); int flush_handles(void); void symcopy(char *, char *); @@ -257,7 +257,7 @@ int add_fixup(long); void display_help(void); void display_version(void); int pladd(char *, char *); -char *path_tail(char *); +char * path_tail(char *); int dolist(void); int segmentpad(FILE *, long, int); int ost_lookup(char *);