I\'m trying to compile a matlab wrapper for libdc1394 which is a library for firewire cameras. I get a strange error involving some inline functions in a header file. I\'m
How to specify C99 via CFLAGS modification on the command line:
mex -v -largeArrayDims CFLAGS="\$CFLAGS -std=C99" dc1394mex.c
Well Simons proposal was correct. Only catch I didn't know was that you can't give cflags directly to mex. You have to alter your mexopts.sh file. Also I had to remove -ansi flag because it contradicts with c99.