* Do not include system headers in shared files (stdlib.h). * Don't include lcd.h only once in each driver. * Remove some unnecessary headers from driver (e.g. syslog.h) * Include <poll.h> instead of <sys/poll.h> * Spelling fixes.
9 lines
161 B
C
9 lines
161 B
C
#ifndef HD_USS720_H
|
|
#define HD_USS720_H
|
|
|
|
#include "lcd.h" /* for Driver */
|
|
|
|
/* initialise this particular driver */
|
|
int hd_init_uss720(Driver *drvthis);
|
|
#endif
|