Sort headers/includes

This commit is contained in:
Benny Baumann 2020-09-18 19:23:04 +02:00
parent dac1e05a2c
commit e1c96879f4
15 changed files with 24 additions and 19 deletions

View File

@ -6,6 +6,8 @@ Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
#include "config.h"
#include "Affinity.h"
#include <stdlib.h>

View File

@ -7,10 +7,10 @@ Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
#include "Settings.h"
#include "Panel.h"
#include "ScreenManager.h"
#include "ProcessList.h"
#include "ScreenManager.h"
#include "Settings.h"
typedef struct AvailableMetersPanel_ {
Panel super;

View File

@ -8,9 +8,9 @@ in the source distribution for its full text.
*/
#include "Panel.h"
#include "Settings.h"
#include "ScreenManager.h"
#include "ProcessList.h"
#include "ScreenManager.h"
#include "Settings.h"
typedef struct CategoriesPanel_ {
Panel super;

View File

@ -8,8 +8,8 @@ in the source distribution for its full text.
*/
#include "Panel.h"
#include "Settings.h"
#include "ScreenManager.h"
#include "Settings.h"
typedef struct ColorsPanel_ {
Panel super;

View File

@ -8,8 +8,8 @@ in the source distribution for its full text.
*/
#include "Panel.h"
#include "Settings.h"
#include "ScreenManager.h"
#include "Settings.h"
typedef struct DisplayOptionsPanel_ {
Panel super;

View File

@ -7,9 +7,10 @@ Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
#include <stdbool.h>
#include "FunctionBar.h"
#include "Panel.h"
#include <stdbool.h>
#define INCMODE_MAX 40

View File

@ -1,10 +1,10 @@
#ifndef HEADER_InfoScreen
#define HEADER_InfoScreen
#include "Process.h"
#include "Panel.h"
#include "FunctionBar.h"
#include "IncSet.h"
#include "Panel.h"
#include "Process.h"
typedef struct InfoScreen_ InfoScreen;

View File

@ -7,9 +7,10 @@ Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
#include "ListItem.h"
#include <sys/time.h>
#include "ListItem.h"
#define METER_BUFFER_LEN 256
typedef struct Meter_ Meter;

View File

@ -8,8 +8,8 @@ in the source distribution for its full text.
*/
#include "Panel.h"
#include "Settings.h"
#include "ScreenManager.h"
#include "Settings.h"
typedef struct MetersPanel_ MetersPanel;

View File

@ -7,9 +7,9 @@ Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
#include "FunctionBar.h"
#include "Object.h"
#include "Vector.h"
#include "FunctionBar.h"
typedef struct Panel_ Panel;

View File

@ -20,10 +20,10 @@ in the source distribution for its full text.
#endif
#define PAGE_SIZE_KB ( PAGE_SIZE / ONE_K )
#include "Object.h"
#include <sys/types.h>
#include "Object.h"
#define PROCESS_FLAG_IO 0x0001
typedef enum ProcessFields {

View File

@ -7,12 +7,12 @@ Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
#include "Vector.h"
#include "Hashtable.h"
#include "UsersTable.h"
#include "Panel.h"
#include "Process.h"
#include "Settings.h"
#include "UsersTable.h"
#include "Vector.h"
#ifdef HAVE_LIBHWLOC
#include <hwloc.h>

View File

@ -7,10 +7,10 @@ Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
#include "Vector.h"
#include "Header.h"
#include "Settings.h"
#include "Panel.h"
#include "Vector.h"
typedef enum Orientation_ {
VERTICAL,

View File

@ -9,9 +9,10 @@ in the source distribution for its full text.
#define DEFAULT_DELAY 15
#include "Process.h"
#include <stdbool.h>
#include "Process.h"
typedef struct {
int len;
char** names;

View File

@ -7,8 +7,8 @@
#include "Macros.h"
#include <err.h>
#include <assert.h>
#include <err.h>
#include <stdlib.h>
void fail(void) ATTR_NORETURN;