clang-format, more consistent function comments

This commit is contained in:
olemorud
2023-04-22 23:52:33 +02:00
parent 9f66f4aff9
commit ee2ce69fe7
3 changed files with 36 additions and 10 deletions

View File

@@ -3,14 +3,14 @@
#include "parse.h"
#include "util.h"
#include <stdlib.h> // atexit
#include <err.h> // errx
#include <stdlib.h> // atexit
int main(int argc, char* argv[])
{
if (argc != 2) {
errx(EXIT_FAILURE, "Usage: %s <file>", argv[0]);
}
if (argc != 2) {
errx(EXIT_FAILURE, "Usage: %s <file>", argv[0]);
}
atexit(print_trace);