Mercurial > hg
view rust/chg/build.rs @ 42853:37debb6771f5
httppeer: use context manager when reading temporary bundle to send
Differential Revision: https://phab.mercurial-scm.org/D6784
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Wed, 04 Sep 2019 14:35:39 -0700 |
parents | cd490ac908c0 |
children | 1f5ab1a9363d |
line wrap: on
line source
extern crate cc; fn main() { cc::Build::new() .warnings(true) .file("src/sendfds.c") .file("src/sighandlers.c") .compile("procutil"); }