Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Leap:15.2:Rings:1-MinimalX
vim
vitmp.c
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File vitmp.c of Package vim
/* * This is a wrapper around the VIM editor which may be used to invoke * the editor in a way that is guaranteed to be suitable for editing * temporary files used with programs such as crontab(1) and edquota(8). * * Written by Solar Designer <solar@owl.openwall.com> and placed in the * public domain. * * $Id: vitmp.c,v 1.2 2002/04/24 23:11:34 solar Exp $ */ #include <stdio.h> #include <unistd.h> #include <string.h> int main(int argc, const char * const *argv) { char *newargv[argc + 4]; /* GNU C */ newargv[0] = "/bin/vi"; /* No swap files, use memory only */ newargv[1] = "-n"; /* Don't make a backup before overwriting a file */ newargv[2] = "-c"; newargv[3] = "set nowritebackup"; memcpy(&newargv[4], &argv[1], argc * sizeof(char *)); execv(newargv[0], newargv); perror("execv"); return 1; }
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor