diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2023-02-15 01:38:24 -0500 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-02-15 17:52:55 +0100 |
commit | b0c0a49918b6fd5f75cbd7565429a1398ddc80a9 (patch) | |
tree | 7e4b378fcc80b81e9116761846a1727cf8cb58eb /gensym.awk | |
parent | b9890fe507efc65bdffc9f5ae984a6cb6ac2487f (diff) | |
download | gnumach-b0c0a49918b6fd5f75cbd7565429a1398ddc80a9.tar.gz gnumach-b0c0a49918b6fd5f75cbd7565429a1398ddc80a9.tar.bz2 gnumach-b0c0a49918b6fd5f75cbd7565429a1398ddc80a9.zip |
Define prototype for bogus in gensym.awk
Otherwise gcc will complain that bogus does not have a prototype.
Message-Id: <Y+x94PG9qeCnZEpc@jupiter.tail36e24.ts.net>
Diffstat (limited to 'gensym.awk')
-rw-r--r-- | gensym.awk | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -27,6 +27,7 @@ BEGIN { /^[a-z]/ { if (bogus_printed == "no") { + print "void bogus(void);" print "void bogus(void) {"; bogus_printed = "yes"; } |