fixed warnings

added cookie.h header
added header dependency
This commit is contained in:
Markus Fröschle
2013-05-05 05:24:55 +00:00
parent b144b1263b
commit ead990d1a1
3 changed files with 27 additions and 3 deletions

16
sd-emutos/cookie.h Normal file
View File

@@ -0,0 +1,16 @@
/*
* cookie.h
*
* Created on: 05.05.2013
* Author: mfro
*/
#ifndef _COOKIE_H_
#define _COOKIE_H_
#include <stdint.h>
extern int getcookie(uint32_t cookie, uint32_t *p_value);
extern void setcookie(uint32_t cookie, uint32_t value);
#endif /* _COOKIE_H_ */