mirror of
https://github.com/thisistherk/fast_obj.git
synced 2025-04-04 21:15:04 +00:00
Ensure static functions are static
This commit is contained in:
parent
ef746985fb
commit
005b738a2a
1 changed files with 4 additions and 0 deletions
|
@ -204,12 +204,14 @@ void* array_realloc(void* ptr, unsigned int n, unsigned int b)
|
|||
}
|
||||
|
||||
|
||||
static
|
||||
void* file_open(const char* path)
|
||||
{
|
||||
return fopen(path, "rb");
|
||||
}
|
||||
|
||||
|
||||
static
|
||||
void file_close(void* file)
|
||||
{
|
||||
FILE* f;
|
||||
|
@ -219,6 +221,7 @@ void file_close(void* file)
|
|||
}
|
||||
|
||||
|
||||
static
|
||||
unsigned int file_read(void* file, void* dst, unsigned int bytes)
|
||||
{
|
||||
FILE* f;
|
||||
|
@ -228,6 +231,7 @@ unsigned int file_read(void* file, void* dst, unsigned int bytes)
|
|||
}
|
||||
|
||||
|
||||
static
|
||||
unsigned int file_size(void* file)
|
||||
{
|
||||
FILE* f;
|
||||
|
|
Loading…
Add table
Reference in a new issue