File: gpsd_fix.c

package info (click to toggle)
s3d 0.2.2-14
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 6,572 kB
  • ctags: 5,265
  • sloc: ansic: 20,869; python: 488; perl: 98; makefile: 38; sh: 29
file content (13 lines) | stat: -rw-r--r-- 170 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <gps.h>

#ifdef __CLASSIC_C__
int main(){
  int ac;
  char*av[];
#else
int main(int ac, char*av[]){
#endif
  struct gps_data_t t;
  sizeof(t.fix);
  return 0;
}