retire PUBLIC, PRIVATE and FORWARD

This commit is contained in:
Ben Gras
2012-03-25 20:25:53 +02:00
parent 6a73e85ad1
commit 7336a67dfe
603 changed files with 5776 additions and 5779 deletions

View File

@@ -24,7 +24,7 @@
#include "util.h"
#include "sanitycheck.h"
PUBLIC void free_proc(struct vmproc *vmp)
void free_proc(struct vmproc *vmp)
{
map_free_proc(vmp);
if(vmp->vm_flags & VMF_HASPT) {
@@ -38,7 +38,7 @@ PUBLIC void free_proc(struct vmproc *vmp)
#endif
}
PUBLIC void clear_proc(struct vmproc *vmp)
void clear_proc(struct vmproc *vmp)
{
region_init(&vmp->vm_regions_avl);
vmp->vm_region_top = 0;
@@ -54,7 +54,7 @@ PUBLIC void clear_proc(struct vmproc *vmp)
/*===========================================================================*
* do_exit *
*===========================================================================*/
PUBLIC int do_exit(message *msg)
int do_exit(message *msg)
{
int proc;
struct vmproc *vmp;
@@ -97,7 +97,7 @@ SANITYCHECK(SCL_FUNCTIONS);
/*===========================================================================*
* do_willexit *
*===========================================================================*/
PUBLIC int do_willexit(message *msg)
int do_willexit(message *msg)
{
int proc;
struct vmproc *vmp;