
These trivial differences are are only current differences from upstream OpenBSD. Change-Id: Iddbee2c803911915a25e1da8b246e8403fa72daf
34 lines
1.1 KiB
C
34 lines
1.1 KiB
C
/* $OpenBSD: setprogname.c,v 1.4 2013/11/12 06:09:48 deraadt Exp $ */
|
|
/*
|
|
* Copyright (c) 2013 Antoine Jacoutot <ajacoutot@openbsd.org>
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
|
|
extern const char *__progname;
|
|
|
|
void
|
|
setprogname(const char *progname)
|
|
{
|
|
const char *tmpn;
|
|
|
|
tmpn = strrchr(progname, '/');
|
|
if (tmpn == NULL)
|
|
__progname = progname;
|
|
else
|
|
__progname = tmpn + 1;
|
|
}
|