change use of “Area *” to “PArea” and “struct Area” to “TArea”

no change in size (mgcc and pcc, small and full)
This commit is contained in:
tg
2008-11-11 23:50:31 +00:00
parent 6a4afdde05
commit c80c28633b
7 changed files with 55 additions and 55 deletions

6
main.c
View File

@ -13,7 +13,7 @@
#include <locale.h>
#endif
__RCSID("$MirOS: src/bin/mksh/main.c,v 1.106 2008/11/10 19:33:07 tg Exp $");
__RCSID("$MirOS: src/bin/mksh/main.c,v 1.107 2008/11/11 23:50:30 tg Exp $");
extern char **environ;
@ -1136,7 +1136,7 @@ coproc_cleanup(int reuse)
}
struct temp *
maketemp(Area *ap, Temp_type type, struct temp **tlist)
maketemp(PArea ap, Temp_type type, struct temp **tlist)
{
struct temp *tp;
int len;
@ -1194,7 +1194,7 @@ hash(const char *n)
}
void
ktinit(struct table *tp, Area *ap, int tsize)
ktinit(struct table *tp, PArea ap, int tsize)
{
tp->areap = ap;
tp->tbls = NULL;