diff options
author | John Malmberg <wb8tyw@qsl.net> | 2019-01-09 08:29:41 -0600 |
---|---|---|
committer | John Malmberg <wb8tyw@qsl.net> | 2019-01-09 08:29:41 -0600 |
commit | 68e8a8a5bb52a3db4971204e2e23cab2eb29097b (patch) | |
tree | 4e62b6575697b524376380313bbe2efe49763676 /support/xalloc.h | |
parent | a5dd80bb2b2ad33e0397b48d0ab2b220ed040f9e (diff) | |
download | egawk-68e8a8a5bb52a3db4971204e2e23cab2eb29097b.tar.gz egawk-68e8a8a5bb52a3db4971204e2e23cab2eb29097b.tar.bz2 egawk-68e8a8a5bb52a3db4971204e2e23cab2eb29097b.zip |
Fixes for building on OpenVMS
Diffstat (limited to 'support/xalloc.h')
-rw-r--r-- | support/xalloc.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/support/xalloc.h b/support/xalloc.h index 89dbe2c1..f238bb79 100644 --- a/support/xalloc.h +++ b/support/xalloc.h @@ -1,8 +1,8 @@ /* xalloc.h -- malloc with out-of-memory checking Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, - 2000, 2003, 2004, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, - Inc. + 2000, 2003, 2004, 2006, 2007, 2008, 2009, 2010, 2019 + Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -30,7 +30,7 @@ extern "C" { # ifndef __attribute__ # if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 8) -# define __attribute__(x) +# define __attribute__(arg) # endif # endif |