2022-05-14 03:18:11 +08:00
|
|
|
/* Program name management.
|
2024-04-30 19:15:39 +08:00
|
|
|
Copyright (C) 2016-2023 Free Software Foundation, Inc.
|
2022-05-14 03:18:11 +08:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
2024-04-30 19:15:39 +08:00
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
2022-05-14 03:18:11 +08:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2024-04-30 19:15:39 +08:00
|
|
|
GNU Lesser General Public License for more details.
|
2022-05-14 03:18:11 +08:00
|
|
|
|
2024-04-30 19:15:39 +08:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2022-05-14 03:18:11 +08:00
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>. */
|
|
|
|
|
|
|
|
#ifndef _GL_GETPROGNAME_H
|
|
|
|
#define _GL_GETPROGNAME_H
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2024-04-30 19:15:39 +08:00
|
|
|
#if __GNUC__ || (__clang_major__ >= 4)
|
|
|
|
# warning "The include file getprogname.h is deprecated. Use <stdlib.h> instead."
|
2022-05-14 03:18:11 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|