1
1

Include fcntl.h, not sys/fcntl.h so we get the definition

of the open system call.  That is what man page says to do.
Fixes warning on Solaris.

This commit was SVN r24073.
Этот коммит содержится в:
Rolf vandeVaart 2010-11-19 17:40:02 +00:00
родитель e7ff9375d7
Коммит 09fdd5cc23

Просмотреть файл

@ -26,7 +26,7 @@
#endif
#include <sys/stat.h>
#include <ctype.h>
#include <sys/fcntl.h>
#include <fcntl.h>
#include <errno.h>
#include "opal/util/argv.h"