X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Falloc.h;h=979d2da074e577843376b62d5d0224f98543269e;hb=dbb0228a4c98cbf4756ba651fda158c1565b3b55;hp=b44f0f38b51ba8cbe8cc9e23c8c0beceed7b764e;hpb=bd244987b9175ae3edf7c5f7417340a0a37427a8;p=pspp diff --git a/src/alloc.h b/src/alloc.h index b44f0f38b5..979d2da074 100644 --- a/src/alloc.h +++ b/src/alloc.h @@ -14,8 +14,8 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. */ + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. */ #if !alloc_h #define alloc_h 1 @@ -27,6 +27,7 @@ void *xmalloc (size_t size); void *xcalloc (size_t size); void *xrealloc (void *ptr, size_t size); char *xstrdup (const char *s); +void out_of_memory (void) NO_RETURN; /* alloca() wrapper functions. */ #if defined (HAVE_ALLOCA) || defined (C_ALLOCA)