Hey,

It seems that tmpfile() always returns NULL.

here is the code:


int main (int argc, char *argv[])
{
    FILE *fp;

    fp = tmpfile();
    if (!fp)
      {
        printf("tmpfile returned NULL\n");
        return -1;
      }

    return 0;
}

quite simple, actually :)

Vincent Torri

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Cegcc-devel mailing list
Cegcc-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cegcc-devel

Reply via email to