mirror of
https://github.com/VictorEijkhout/TheArtOfHPC_vol3_cppf08programming.git
synced 2026-01-24 22:44:48 +09:00
20 lines
492 B
C++
20 lines
492 B
C++
/****************************************************************
|
|
****
|
|
**** This program source is part of
|
|
**** Introduction to High-performance Scientific Computing
|
|
**** by Victor Eijkhout
|
|
**** copyright Victor Eijkhout 2011-2021
|
|
****
|
|
**** foosub.c : declaration of function for fooprog.c
|
|
****
|
|
****************************************************************/
|
|
|
|
#include <iostream>
|
|
using std::cout;
|
|
#include <string>
|
|
using std::string;
|
|
|
|
void bar( string s ) {
|
|
cout << s << '\n';
|
|
}
|