#include directives

This commit is contained in:
Kolan Sh 2012-05-01 01:36:16 +04:00
parent b8a9f34639
commit 9809469864
4 changed files with 2 additions and 4 deletions

View File

@ -1,5 +1,5 @@
#include <stdlib.h>
#include <assert.h>
#include <stdio.h>
#include "ColoredSquare.h"

View File

@ -1,8 +1,6 @@
#ifndef __FIGURE_H__
#define __FIGURE_H__
#include <stdio.h>
#include "Object.h"
struct Figure;

View File

@ -1,4 +1,5 @@
#include <stdlib.h>
#include <stdio.h>
#include "Square.h"

1
main.c
View File

@ -1,5 +1,4 @@
#include <stdio.h>
#include <stdlib.h>
#include "ColoredSquare.h"