File: trysetenv.c

package info (click to toggle)
twoftpd 1.14-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,556 kB
  • ctags: 901
  • sloc: ansic: 6,685; makefile: 321; sh: 175
file content (7 lines) | stat: -rw-r--r-- 75 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
#include <stdlib.h>

int main()
{
  setenv("FOO", "bar", 1);
  return 0;
}