~ubuntu-branches/debian/sid/neovim/sid

« back to all changes in this revision

Viewing changes to test/includes/pre/fcntl.h

  • Committer: Package Import Robot
  • Author(s): James McCoy
  • Date: 2016-02-20 22:41:32 UTC
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: package-import@ubuntu.com-20160220224132-e24n8lh3yo5ylt23
Tags: upstream-0.1.2
ImportĀ upstreamĀ versionĀ 0.1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <fcntl.h>
 
2
 
 
3
static const mode_t kO_RDONLY = O_RDONLY;
 
4
static const mode_t kO_WRONLY = O_WRONLY;
 
5
static const mode_t kO_RDWR   = O_RDWR;
 
6
static const mode_t kO_CREAT  = O_CREAT;
 
7
static const mode_t kO_EXCL   = O_EXCL;