#include <stdio.h>
#include "setenv.h"

main()
{
  printf("TMP=%s\n", getenv("TMP"));

  setenv("TMP", "foo", 1);
  printf("TMP=%s\n", getenv("TMP"));
}
