Hello! Sorry for my english.
I need classes of STL: only list and auto_ptr. But when I attempt to include STL header, code size increases on 20kb (based optimization). I think so, Keil connects iostream classes, which I do not need.
Keil requires implementation of IO functions:
int fputc(int ch, FILE *f) int fgetc (FILE *fp) int fclose(FILE* f) int ferror(FILE *f) int fseek (FILE *fp, long nPos, int nMode) int fflush (FILE *pStream)
but i use only std::list.
#include <list> int main() { std::list<int> list; list.push_back(0); }