commit 796c6e75d72a1fbd8ea1dd6ccaaaa57180eb3865 from: Omar Polo date: Mon Jan 11 15:16:50 2021 UTC fix build on non-OpenBSD systems not every system has a __dead attribute for functions. This fixes the build on FreeBSD. commit - 7b1d97903280066059ed4b00d4d407876957d071 commit + 796c6e75d72a1fbd8ea1dd6ccaaaa57180eb3865 blob - e145d1a626088989b5738e140f7480da9c5fac93 blob + 25a52621b8daec5639c5aea29e6fcc492885e75d --- gmid.h +++ gmid.h @@ -37,6 +37,10 @@ # define INFTIM -1 #endif +#ifndef __dead +# define __dead +#endif + #define GEMINI_URL_LEN (1024+3) /* URL max len + \r\n + \0 */ /* large enough to hold a copy of a gemini URL and still have extra room */