fork download
  1.  
  2. //Array of positions for the analog clock hand
  3. static const uint8_t xpos[76] = {48,46,44,41,39,37,35,32,30,28,26,24,22,21,19,18,16,15,14,13,12,12,11,11,11,10,11,11,11,12,12,13,14,15,16,18,19,21,22,24,26,28,30,32,35,37,39,41,44,46,48,50,52,55,57,59,61,64,66,68,70,72,74,75,77,78,80,81,82,83,84,84,85,85,85,86};
  4. static const uint8_t ypos[76] = {86,85,85,85,84,84,83,82,81,80,78,77,75,74,72,70,68,66,64,61,59,57,55,52,50,48,46,44,41,39,37,35,32,30,28,26,24,22,21,19,18,16,15,14,13,12,12,11,11,11,10,11,11,11,12,12,13,14,15,16,18,19,21,22,24,26,28,30,32,35,37,39,41,44,46,48};
  5.  
  6.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c:3:14: error: unknown type name 'uint8_t'
 static const uint8_t xpos[76] = {48,46,44,41,39,37,35,32,30,28,26,24,22,21,19,18,16,15,14,13,12,12,11,11,11,10,11,11,11,12,12,13,14,15,16,18,19,21,22,24,26,28,30,32,35,37,39,41,44,46,48,50,52,55,57,59,61,64,66,68,70,72,74,75,77,78,80,81,82,83,84,84,85,85,85,86};
              ^
prog.c:4:14: error: unknown type name 'uint8_t'
 static const uint8_t ypos[76] = {86,85,85,85,84,84,83,82,81,80,78,77,75,74,72,70,68,66,64,61,59,57,55,52,50,48,46,44,41,39,37,35,32,30,28,26,24,22,21,19,18,16,15,14,13,12,12,11,11,11,10,11,11,11,12,12,13,14,15,16,18,19,21,22,24,26,28,30,32,35,37,39,41,44,46,48};
              ^
stdout
Standard output is empty