mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 01:34:25 +00:00 
			
		
		
		
	Merge pull request #4019 from Pyrohh/fcntl
[RFC] test: sys/fcntl.h -> fcntl.h
This commit is contained in:
		@@ -1,4 +1,4 @@
 | 
				
			|||||||
#include <sys/fcntl.h>
 | 
					#include <fcntl.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static const mode_t kO_RDONLY = O_RDONLY;
 | 
					static const mode_t kO_RDONLY = O_RDONLY;
 | 
				
			||||||
static const mode_t kO_WRONLY = O_WRONLY;
 | 
					static const mode_t kO_WRONLY = O_WRONLY;
 | 
				
			||||||
@@ -22,7 +22,7 @@ cimport('./src/nvim/main.h')
 | 
				
			|||||||
cimport('./src/nvim/fileio.h')
 | 
					cimport('./src/nvim/fileio.h')
 | 
				
			||||||
local fs = cimport('./src/nvim/os/os.h')
 | 
					local fs = cimport('./src/nvim/os/os.h')
 | 
				
			||||||
cppimport('sys/stat.h')
 | 
					cppimport('sys/stat.h')
 | 
				
			||||||
cppimport('sys/fcntl.h')
 | 
					cppimport('fcntl.h')
 | 
				
			||||||
cppimport('uv-errno.h')
 | 
					cppimport('uv-errno.h')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
local buffer = ""
 | 
					local buffer = ""
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user