Skip to content
5 changes: 4 additions & 1 deletion src/codegen/header.rs
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,10 @@ pub fn generate(manifest: &Manifest, output_dir: &Path) -> Result<()> {
fn write_abi_header(output_dir: &Path, safe_name: &str, upper: &str) -> Result<()> {
let mut h = String::with_capacity(2048);
writeln!(h, "/* SPDX-License-Identifier: MPL-2.0 */")?;
writeln!(h, "/* Auto-generated by Chapeliser — do not edit manually. */")?;
writeln!(
h,
"/* Auto-generated by Chapeliser — do not edit manually. */"
)?;
writeln!(
h,
"/* C-ABI prototypes for the c_* bridge the generated Chapel calls. */"
Expand Down
Loading