On Fri, Apr 18, 2008 at 03:20:56PM +0200, Jurjen Oskam wrote:
> Hi there,
>
> I'm seeing something I don't quite understand concerning environment
> variables. (This is on an OpenBSD 4.2 amd64 system) I hope someone here
> can explain.
>
> Given the following C-program:
>
> #include <stdio.h>
> #include <errno.h>
> #include <stdlib.h>
>
> int main(int argc, char **argv)
> {
> char *var1 = "FOO=TESTING";A bit OT but you should really alloc that or use a static.

