blob: dced69c6f93e531dec5d38ae0b7fe75deba0070b [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <stdio.h>
#include "examples/rust/staticlib/rust/crust.h"
void print_msg(void) {
// Call the method from the Rust crate.
printf("rust says: '%d'\n", crust_get_int());
}