saltwater 0.11.0

A C compiler written in Rust, with a focus on good error messages.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// code: 1
typedef unsigned int __uid_t;
extern __uid_t getuid (void) ;

struct passwd {
  char *pw_name;
  char *pw_passwd;
};

extern struct passwd *getpwuid (__uid_t __uid);
extern int puts (const char *__s);

int main(void) {
  return puts(getpwuid(getuid())->pw_name) >= 0;
}