From: Matt Kraai Date: Fri, 8 Jun 2001 13:57:27 +0000 (-0000) Subject: Add padding to struct sysinfo needed by m68k (note and patch by Richard X-Git-Tag: 0_52~109 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5246225596a45de63a994abbef92b7d23180681c;p=oweals%2Fbusybox.git Add padding to struct sysinfo needed by m68k (note and patch by Richard Hirst). --- diff --git a/include/libbb.h b/include/libbb.h index 31bd97f2e..f99d25780 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -190,6 +190,7 @@ struct sysinfo { unsigned long totalswap; /* Total swap space size */ unsigned long freeswap; /* swap space still available */ unsigned short procs; /* Number of current processes */ + unsigned short pad; /* Padding needed for m68k */ unsigned long totalhigh; /* Total high memory size */ unsigned long freehigh; /* Available high memory size */ unsigned int mem_unit; /* Memory unit size in bytes */ diff --git a/libbb/libbb.h b/libbb/libbb.h index 31bd97f2e..f99d25780 100644 --- a/libbb/libbb.h +++ b/libbb/libbb.h @@ -190,6 +190,7 @@ struct sysinfo { unsigned long totalswap; /* Total swap space size */ unsigned long freeswap; /* swap space still available */ unsigned short procs; /* Number of current processes */ + unsigned short pad; /* Padding needed for m68k */ unsigned long totalhigh; /* Total high memory size */ unsigned long freehigh; /* Available high memory size */ unsigned int mem_unit; /* Memory unit size in bytes */