Re: [Tinycc-devel] realpath(x, NULL) doesn't work with tcc(1)

2016-06-06 Thread Steffen Nurpmeso
Good morning! :) Michael Matz wrote: |On Thu, 2 Jun 2016, Steffen Nurpmeso wrote: |> Well, have i yet asked this? I think no... |> It's like that for a long time, ever since i use tcc(1) (autumn |> last year): |> |> ?0[steffen@wales tmp]$ cat t.c |> #include |>

Re: [Tinycc-devel] realpath(x, NULL) doesn't work with tcc(1)

2016-06-05 Thread Michael Matz
Hi, On Thu, 2 Jun 2016, Steffen Nurpmeso wrote: Well, have i yet asked this? I think no... It's like that for a long time, ever since i use tcc(1) (autumn last year): ?0[steffen@wales tmp]$ cat t.c #include int main(void){ char *x = realpath(".", NULL); return (x != NULL) ? 0 :

[Tinycc-devel] realpath(x, NULL) doesn't work with tcc(1)

2016-06-02 Thread Steffen Nurpmeso
Hi! Well, have i yet asked this? I think no... It's like that for a long time, ever since i use tcc(1) (autumn last year): ?0[steffen@wales tmp]$ cat t.c #include int main(void){ char *x = realpath(".", NULL); return (x != NULL) ? 0 : 1; } ?0[steffen@wales tmp]$ for i in