mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 04:46:55 +03:00
5f1140f894
with the same name: - memory.h - string.h In order to do not have two .h files with the same name these two needs to be renamed. I've renamed the others too, in order to have the same naming rules here. Updated README to reflect this change
7 lines
118 B
C
7 lines
118 B
C
#ifndef __MHL_ENV_H
|
|
#define __MHL_ENV_H
|
|
|
|
#define mhl_getenv_dup(name) (mhl_str_dup(name ? getenv(name) : ""))
|
|
|
|
#endif
|