Passed *every* piece of source in this project through indent. I'm setting things up with ctags soon and am actually going to *gasp* use a nice programming environment to continue development in. :)
14 lines
193 B
C
14 lines
193 B
C
/*
|
|
* header file for lcd semaphore operations
|
|
*/
|
|
|
|
#ifndef LCD_SEM_H
|
|
#define LCD_SEM_H
|
|
|
|
int sem_get (void);
|
|
int sem_wait (int sid);
|
|
int sem_signal (int sid);
|
|
int sem_remove (int sid);
|
|
|
|
#endif
|