Documentation Fix; FILE_PERM is now in constants.h

This commit is contained in:
Sears Russell 2006-10-05 00:47:05 +00:00
parent 84dcdf228f
commit 2d136695ff

View file

@ -44,7 +44,7 @@ terms specified in this license.
#include <stdio.h>
#include <string.h>
/** For O_DIRECT. It's unclear that this is the correct thing to #define, but it works under linux. */
/** For O_DIRECT. It's unclear that this is the correct thing to \#define, but it works under linux. */
#define __USE_GNU
#include <fcntl.h>
#include <unistd.h>
@ -64,8 +64,6 @@ terms specified in this license.
#include "io.h"
#include <assert.h>
#define FILE_PERM (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH)
#include <lladd/bufferManager.h>