mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-11-08 23:27:15 -05:00
Rename the "headers" directory to "templates", and rename the files within as template.* with the appropriate file types so that editors will pick up the correct type. Add a .h file template. Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
12 lines
218 B
C
12 lines
218 B
C
/* SPDX-License-Identifier: BSD-2-Clause */
|
|
/* Copyright 1996-20xx The NASM Authors - All Rights Reserved */
|
|
|
|
#ifndef FILENAME_H
|
|
#define FILENAME_H
|
|
|
|
#include "compiler.h"
|
|
|
|
/* Code goes here */
|
|
|
|
#endif /* FILENAME_H */
|