Merge pull request #329 from g-oikonomou/bugfix/add-extern-keyword

Add missing extern keyword
This commit is contained in:
Simon Duquennoy 2018-02-28 15:25:05 +01:00 committed by GitHub
commit abeffecbff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -94,9 +94,9 @@ extern struct tsch_asn_divisor_t tsch_hopping_sequence_length;
/* TSCH timeslot timing (in rtimer ticks) */
extern rtimer_clock_t tsch_timing[tsch_ts_elements_count];
/* Statistics on the current session */
unsigned long tx_count;
unsigned long rx_count;
unsigned long sync_count;
extern unsigned long tx_count;
extern unsigned long rx_count;
extern unsigned long sync_count;
/* TSCH processes */
PROCESS_NAME(tsch_process);