mirror of
https://github.com/ksherlock/profuse.git
synced 2025-02-20 00:29:13 +00:00
19 lines
180 B
C
19 lines
180 B
C
|
/*
|
||
|
* common.h
|
||
|
* ProFUSE
|
||
|
*
|
||
|
* Created by Kelvin Sherlock on 12/20/08.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef __COMMON_H__
|
||
|
#define __COMMON_H__
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#define BLOCK_SIZE 512
|
||
|
|
||
|
|
||
|
#endif
|
||
|
|