blob: 4e05079e94d9b9399da8f479af904f47b6f1bc54 [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 "garnet/examples/rust/staticlib/rust/crust.h"
#include <stdio.h>
void print_msg(void) {
// Call the method from the Rust crate.
printf("rust says: '%d'\n", crust_get_int());
}