Correction des inclusions nettoyées
This commit is contained in:
parent
05302b0f96
commit
deb614c5da
|
@ -1,4 +1,6 @@
|
|||
#include "common.h"
|
||||
#include "buffer.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
Buffer createBuffer(FILE* file) {
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
#include "compress.h"
|
||||
#include "common.h"
|
||||
#include "compress.h"
|
||||
#include "buffer.h"
|
||||
#include "huftree.h"
|
||||
#include "display.h"
|
||||
#include "assert.h"
|
||||
|
||||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#include "display.h"
|
||||
#include "common.h"
|
||||
#include "display.h"
|
||||
#include "huftree.h"
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#include "huftree.h"
|
||||
#include "common.h"
|
||||
#include "huftree.h"
|
||||
#include "buffer.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
#include "common.h"
|
||||
#include "display.h"
|
||||
#include "compress.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <argp.h>
|
||||
#include <libintl.h>
|
||||
#include <locale.h>
|
||||
|
|
Loading…
Reference in New Issue