summaryrefslogtreecommitdiff
path: root/src/libenvexec/env_get.c
blob: d8094619bcf44c4e0f3efd629c364c6bc1b9547e (plain)
1
2
3
4
5
6
7
8
9
/* ISC license. */

#include <stdlib.h>
#include <skalibs/posixplz.h>

char const *env_get (char const *s)
{
  return getenv(s) ;
}