}
- memset (temp, 0x20, 16);
+ memset (temp, ' ', 16);
temp[0] = '0';
if ((p = strrchr (fname, '/'))) {
memcpy (header.name, name, len);
while (len < 16) {
- header.name[len++] = 0x20;
+ header.name[len++] = ' ';
}
memcpy (header.mtime, temp, 12);
bytes = ftell (tfp);
len = sprintf (temp, "%ld", bytes);
- temp[len] = 0x20;
+ temp[len] = ' ';
memcpy (header.size, temp, 10);
- header.endsig[0] = 0x60;
- header.endsig[1] = 0x0A;
+ header.endsig[0] = '`';
+ header.endsig[1] = '\n';
need_newline = (bytes % 2);
if (need_newline) {
- temp[0] = 0x0A;
+ temp[0] = '\n';
if (fwrite (temp, 1, 1, ofp) != 1) {
const char *name;
char temp[17], *p, *contents;
- if (fwrite ("!<arch>\x0A", 8, 1, tfp) != 1) {
+ if (fwrite ("!<arch>\n", 8, 1, tfp) != 1) {
fclose (tfp);
long sym_start = sizeof (*hdr) + GET_UINT32 (hdr->a_text) + GET_UINT32 (hdr->a_data) + GET_UINT32 (hdr->a_trsize) + GET_UINT32 (hdr->a_drsize);
long strtab_start = sym_start + GET_UINT32 (hdr->a_syms);
+ struct elks_nlist nlist;
+
while (sym_start < strtab_start) {
- struct elks_nlist nlist;
memcpy (&nlist, (char *) object + sym_start, sizeof (nlist));
if (nlist.n_type == 5 || nlist.n_type == 7 || nlist.n_type == 9) {
}
- if (fwrite ("!<arch>\x0A", 8, 1, tfp) != 1) {
+ if (fwrite ("!<arch>\n", 8, 1, tfp) != 1) {
fclose (tfp);
len = sprintf (temp, "%d", bytes + 4);
#endif
- temp[len] = 0x20;
+ temp[len] = ' ';
memcpy (header.size, temp, 10);
- header.endsig[0] = 0x60;
- header.endsig[1] = 0x0A;
+ header.endsig[0] = '`';
+ header.endsig[1] = '\n';
if (fwrite (&header, sizeof (header), 1, tfp) != 1) {
const char *name;
char temp[17], *p, *contents;
- if (fwrite ("!<arch>\x0A", 8, 1, tfp) != 1) {
+ if (fwrite ("!<arch>\n", 8, 1, tfp) != 1) {
fclose (tfp);