We are using this function tmpfile() :
FILE *tmpfp ;
if ((tmpfp = tmpfile()) == NULL)
{
fprintf(stderr, "%s: ERROR: init_operator(): ", ROUTINE);
perror("tmpfile()");
exit(ERR_OPEN);
}
and the above is raising error :
MSMD0603: ERROR: init_operator(): tmpfile(): No space left on device.
Note that /tmp is 1% used which is pointed to by $TMPDIR .....
Kindly help us in that ....