1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#include <stdio.h>
// The above #include <▒> will be replaced by the entire contents of /usr/include/stdio.h.
//
// Includes declaration for printf(…) among others that we don't use.

#include "o.h"
// Ensures consistency among all files that refer to print_oh(), including this one.  If you try to
// change the return type or add/remove parameters, this will ensure that you get the error early
// in the process.

// Function DEFINITION  (includes the body in {…})
void print_oh() {
    printf("Ohhhh.......\n");
}

/* vim: set tabstop=4 shiftwidth=4 fileencoding=utf-8 noexpandtab: */

© Copyright 2021 Alexander J. Quinn         This content is protected and may not be shared, uploaded, or distributed.