Skip to content

Commit

Permalink
Fix all remaining #include "ac_cfg.h" to use <ac_cfg.h>
Browse files Browse the repository at this point in the history
  • Loading branch information
ndim committed Aug 24, 2024
1 parent 0dcfde8 commit 1116a0c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/config_gram.y
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

%{

#include "ac_cfg.h"
#include <ac_cfg.h>

#include <stdlib.h>
#include <string.h>
Expand Down
2 changes: 1 addition & 1 deletion src/lexer.l
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include <sys/types.h>
#include <sys/stat.h>

#include "ac_cfg.h"
#include <ac_cfg.h>
#include "avrdude.h"
#include "libavrdude.h"
#include "config.h"
Expand Down
2 changes: 1 addition & 1 deletion src/libavrdude.i
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ The following global variables are available in `ad.cvar`:
%module (docstring=DOCSTRING) swig_avrdude
%feature("autodoc", "1");
%{
#include "ac_cfg.h"
#include <ac_cfg.h>
#include "libavrdude.h"

// global variables referenced by library
Expand Down
2 changes: 1 addition & 1 deletion src/serprog.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
*
*/

#include "ac_cfg.h"
#include <ac_cfg.h>

#include "avrdude.h"
#include "libavrdude.h"
Expand Down

0 comments on commit 1116a0c

Please sign in to comment.