git.ucc.asn.au
/
matches
/
MCTX3420.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fix minor typo
[matches/MCTX3420.git]
/
testing
/
fastcgi-approach
/
common.h
1
/**
2
* @file common.h
3
* @purpose Common header includes
4
*/
5
6
#ifndef _COMMON_H
7
#define _COMMON_H
8
9
#include <stdlib.h>
10
#include <stdio.h>
11
#include <stdbool.h>
12
#include <string.h>
13
#include <errno.h>
14
#include <pthread.h>
15
#include <unistd.h>
16
17
extern void Handler_Sensors(FCGIContext *data, char *params);
18
19
#endif //_COMMON_H
20
UCC
git Repository :: git.ucc.asn.au