From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mimir.eigenstate.org ([206.124.132.107]) by ewsd; Fri Jul 24 01:03:01 EDT 2020 Received: from abbatoir.fios-router.home (pool-74-101-2-6.nycmny.fios.verizon.net [74.101.2.6]) by mimir.eigenstate.org (OpenSMTPD) with ESMTPSA id 571c214d (TLSv1.2:ECDHE-RSA-AES256-SHA:256:NO); Thu, 23 Jul 2020 22:02:46 -0700 (PDT) Message-ID: <2481D86F5930FFDFE6E97FCA8E03E4D7@eigenstate.org> To: staal1978@gmail.com, 9front@9front.org Subject: Re: [9front] [patch] add isblank to ape/ctype.h Date: Thu, 23 Jul 2020 22:02:45 -0700 From: ori@eigenstate.org In-Reply-To: <4397179.G8QHhdnbYj@hugin> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit List-ID: <9front.9front.org> List-Help: X-Glyph: ➈ X-Bullshit: advanced STM AJAX over XML full-stack-oriented storage descriptor firewall-scale layer > +extern int isblank(int); I think you need to implement this function as well. You're declaring it, but I don't see an implementation in ap/gen/isalnum.c. This means that code like: int apply(int (*f)(int), int v) { return f(v); } apply(isblank, 'a') will fail to link.