// file: lecture_14/00_scalar/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 my_first_kernel(void); __global__ void my_first_add(int*c, int* a, int* b); // end of include file // #endif