diff options
| author | Bruce Evans <bde@FreeBSD.org> | 2002-09-05 08:03:02 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 2002-09-05 08:03:02 +0000 |
| commit | 5cf10f502a7b7957cc88906fb751d28cec9fc26f (patch) | |
| tree | 7292441d4b01eea2a400dbfb3b241426f3602d46 | |
| parent | 680f22fbfe7c395d6a05d7aad49898434c78e94f (diff) | |
Notes
| -rw-r--r-- | sys/sys/nlist_aout.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/sys/nlist_aout.h b/sys/sys/nlist_aout.h index 3b8d44f2be06..4290bb892b71 100644 --- a/sys/sys/nlist_aout.h +++ b/sys/sys/nlist_aout.h @@ -60,6 +60,8 @@ struct nlist { } n_un; #else char *n_name; /* symbol name (in memory) */ + int : 8 * (sizeof(long) > sizeof(char *) ? + sizeof(long) - sizeof(char *) : sizeof(char *) - sizeof(long)); #endif unsigned char n_type; /* type defines */ char n_other; /* ".type" and binding information */ |
