// file: lecture_12/example.h // // make sure definitions are only made once // #ifndef ISIP_EXAMPLE #define ISIP_EXAMPLE // system include files // #include "stdio.h" // declare local functions // __global__ void mykernel(void); __global__ void myadd(int*c, int* a, int* b); // end of include file // #endif