summaryrefslogtreecommitdiff
path: root/src/openbsd.c
Commit message (Collapse)AuthorAgeFilesLines
* We no longer need to include headers we don't use for sudo*.h files.Todd C. Miller2020-05-181-11/+0
| | | | | | Previously we needed to include headers required by the various sudo*h files. Now those files are more self-sufficient and we should only include headers needed by code in the various .c files.
* Add SPDX-License-Identifier to files.Todd C. Miller2019-04-291-0/+2
|
* Convert PVS-Studio comment to ANSI C.Todd C. Miller2018-10-261-2/+4
|
* Add comments in .c files so PVS-Studio will check them.Todd C. Miller2018-10-211-0/+3
|
* update my email to Todd.Miller@sudo.wsTodd C. Miller2017-12-031-1/+1
|
* Just use malloc_options "S" on OpenBSD instead of "AFGJPR".Todd C. Miller2016-11-251-1/+1
|
* There's no need to conditionalize the #include <unistd.h>, we requireTodd C. Miller2015-07-021-3/+1
| | | | a POSIX system.
* Only include stddef.h where it is needed.Todd C. Miller2015-06-201-1/+0
|
* We require ANSI C so stop using the obsolete STDC_HEADERS.Todd C. Miller2015-06-191-8/+2
|
* Remove obsolete memory.h include.Todd C. Miller2015-06-181-3/+0
|
* Add os-specific initialization functions for solaris (workaroundTodd C. Miller2012-11-111-0/+52
setuid locale problem in Solaris 11) and openbsd (set malloc_options if SUDO_DEVEL). Also move set_project() to solaris.c.