[luau] Dazzle me with your C programming prowess

Dean Fujioka dean at poshawaii.com
Mon Apr 22 13:09:50 PDT 2002


>
> #include <stdio.h>
> #include </usr/src/linux-2.4.18-0.16/drivers/ieee1394/raw1394.h>
> #include </usr/local/include/libdc1394/dc1394_control.h>
> #include <stdlib.h>
> #include <time.h>
> #include <sys/times.h>
>
I thought homemade header files (not included in the standard library) need
to be in quotes, not angel brackets, i.e.

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include "/usr/src/linux-2.4.18-0.16/drivers/ieee1394/raw1394.h"
#include "/usr/local/include/libdc1394/dc1394_control.h"
#include "sys/times.h"

 and I always put the standard library includes first, in case someone else
uses them.

HTH,
dean




More information about the LUAU mailing list