Skip to content

Commit

Permalink
updates to fix build + copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
uecker committed Jan 10, 2024
1 parent 1b4c938 commit 5ea1668
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
11 changes: 10 additions & 1 deletion src/cfl2png.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/* Copyright 2017-2023. AG Uecker. University Medical Center Göttingen.
* All rights reserved. Use of this source code is governed by
* a BSD-style license which can be found in the LICENSE file.
*/

#include <stdio.h>
#include <assert.h>
Expand All @@ -11,9 +15,14 @@
#include "misc/misc.h"
#include "misc/debug.h"
#include "misc/mmio.h"
#include "misc/io.h"
#include "misc/opts.h"
#include "misc/png.h"
#if 0
#include "misc/io.h"
#else
extern void io_reserve_input(const char* name);
extern void io_unregister(const char* name);
#endif

#include "draw.h"

Expand Down
12 changes: 7 additions & 5 deletions src/main.c
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
/* Copyright 2015-2016. Martin Uecker.
/* Copyright 2015-2023. Martin Uecker.
* All rights reserved. Use of this source code is governed by
* a BSD-style license which can be found in the LICENSE file.
*
* Author:
* 2015-2016 Martin Uecker <[email protected]>
*/

#include <complex.h>
Expand All @@ -16,8 +13,13 @@

#include "misc/misc.h"
#include "misc/mmio.h"
#include "misc/io.h"
#include "misc/opts.h"
#if 0
#include "misc/io.h"
#else
extern void io_reserve_input(const char* name);
extern void io_unregister(const char* name);
#endif

#include "view.h"

Expand Down

0 comments on commit 5ea1668

Please sign in to comment.