Skip to content

Commit

Permalink
Fixed the gtk/gtk.h not found error.
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanMcMillan54 committed Aug 26, 2020
1 parent 4c7324a commit 4371a75
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion FOMOSUI.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <gtk/gtk.h>
#include <gtk-3.0/gtk/gtk.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Expand Down
2 changes: 1 addition & 1 deletion calculator.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include <math.h>
#include <gtk/gtk.h>
#include <gtk-3.0/gtk/gtk.h>
#include <string.h>
#include "cHeaderFiles/calculatorButtons.h"
#include <iso646.h>
Expand Down
2 changes: 1 addition & 1 deletion settings.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <gtk/gtk.h>
#include <gtk-3.0/gtk/gtk.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
Expand Down

1 comment on commit 4371a75

@NathanMcMillan54
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should make FOMOS run slightly faster.

Please sign in to comment.