Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 13 Aug 1996 21:01:20 +1000
From:      Bruce Evans <bde@zeta.org.au>
To:        CVS-committers@freefall.freebsd.org, ache@freefall.freebsd.org, cvs-all@freefall.freebsd.org, cvs-lib@freefall.freebsd.org
Subject:   Re: cvs commit:  src/lib/libc/locale collcmp.c
Message-ID:  <199608131101.VAA10191@godzilla.zeta.org.au>

next in thread | raw e-mail | index | archive | help
>  Modified:    lib/libc/locale  collcmp.c
>  Log:
>  There is so many places where range comparation (using collate)
>  needed (much more than I think initially), so I forced to add
>  new user-visible non-standard function to libc.

This is probably OK for applications, but please try not to introduce
more nonstandard namespace-polluting names that are referenced from
separate libraries (collate_range_cmp is referenced from libgnuregex).

BTW, can anyone explain why the following program doesn't dump core
when it is linked dynamically?
---
extern int alarm;
main() { alarm = 1; }
---

When this is linked statically, `alarm' is resolved to be the alarm()
function in the text segment, so the program dumps core as expected.

Bruce



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199608131101.VAA10191>