1#ifndef OPTIMIZE_H
2#define OPTIMIZE_H
3
4struct entrypoint;
5
6/* optimize.c */
7void optimize(struct entrypoint *ep);
8
9#endif
10