diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2010-12-06 22:23:04 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2010-12-06 22:23:04 -0500 |
commit | 38fc568607fcad4de5bf198d5182a73eb18d7e98 (patch) | |
tree | 8feae0f3ffe60822eb5cd40abc1dceae74760ecf /include | |
parent | dbfca826b1f52f213593c9a2f19c2d83d4888029 (diff) | |
download | NetNuke2-38fc568607fcad4de5bf198d5182a73eb18d7e98.tar.gz |
Transition to fcntl.h for I/O
Diffstat (limited to 'include')
-rw-r--r-- | include/netnuke.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/netnuke.h b/include/netnuke.h index b24af74..ee39a13 100644 --- a/include/netnuke.h +++ b/include/netnuke.h @@ -53,7 +53,7 @@ int nnlogcleanup(); int COM(const char* func, char *format, ...); void* wipe(void* device); pthread_t nnthread(nndevice_t* device); -int nnwrite(FILE* fp, int bsize); +int nnwrite(int fd, int bsize); void nnrandinit(); void nnrandfree(); unsigned int nngetseed(); |