deleted "unsigned chars"
This commit is contained in:
parent
b86dc9f84d
commit
878cbab737
1 changed files with 9 additions and 7 deletions
|
@ -11,12 +11,14 @@
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
|
/* unsigned char: not portable */
|
||||||
|
|
||||||
struct exec {
|
struct exec {
|
||||||
unsigned char a_magic[2];
|
char a_magic[2];
|
||||||
unsigned char a_flags;
|
char a_flags;
|
||||||
unsigned char a_cpu;
|
char a_cpu;
|
||||||
unsigned char a_hdrlen;
|
char a_hdrlen;
|
||||||
unsigned char a_unused;
|
char a_unused;
|
||||||
unsigned short a_version;
|
unsigned short a_version;
|
||||||
long a_text;
|
long a_text;
|
||||||
long a_data;
|
long a_data;
|
||||||
|
@ -29,8 +31,8 @@ struct exec {
|
||||||
struct nlist
|
struct nlist
|
||||||
{ char n_name[8];
|
{ char n_name[8];
|
||||||
long n_value;
|
long n_value;
|
||||||
unsigned char n_sclass;
|
char n_sclass;
|
||||||
unsigned char n_numaux;
|
char n_numaux;
|
||||||
unsigned short n_type;
|
unsigned short n_type;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue