Skip to content

Commit

Permalink
Rename php_private.h to pipp_private.h
Browse files Browse the repository at this point in the history
  • Loading branch information
bschmalhofer committed Mar 1, 2009
1 parent 35a5f67 commit 13f1fb5
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion build/templates/Makefile.in
Expand Up @@ -221,7 +221,7 @@ t/php_qa_testsuite/php5/tests:

codetest: codetest-c codetest-make codetest-perl codetest-pir codetest-pod

T_C = src//pmc//*.pmc src//pmc//php_private.h src//pmc//pipp_hash.c src//pmc//pipp_hash.h
T_C = src//pmc//*.pmc src//pmc//pipp_private.h src//pmc//pipp_hash.c src//pmc//pipp_hash.h
T_MAKE = config//makefiles//root.in
T_PERL = Configure.pl t//harness t//php//*.t src//build//genskel.pl \
lib//Parrot//Test//*.pm lib//Parrot//Test//Pipp//*.pm
Expand Down
2 changes: 1 addition & 1 deletion src/pmc/php.pmc
Expand Up @@ -17,7 +17,7 @@ This singleton PMC holds some static methods.

*/

#include "php_private.h"
#include "pipp_private.h"

INTVAL dynpmc_PhpArray;
INTVAL dynpmc_PhpBoolean;
Expand Down
2 changes: 1 addition & 1 deletion src/pmc/phparray.pmc
Expand Up @@ -17,7 +17,7 @@ Implementation of the Array datatype.

*/

#include "php_private.h"
#include "pipp_private.h"
#include "src/pmc/pipp_hash.h"

pmclass PhpArray
Expand Down
2 changes: 1 addition & 1 deletion src/pmc/phpboolean.pmc
Expand Up @@ -15,7 +15,7 @@ pmc/phpboolean.pmc - PHP Boolean

*/

#include "php_private.h"
#include "pipp_private.h"

pmclass PhpBoolean
extends Boolean
Expand Down
2 changes: 1 addition & 1 deletion src/pmc/phpfloat.pmc
Expand Up @@ -15,7 +15,7 @@ src/pmc/phpfloat.pmc - PHP Float

*/

#include "php_private.h"
#include "pipp_private.h"

pmclass PhpFloat
extends Float
Expand Down
2 changes: 1 addition & 1 deletion src/pmc/phpnull.pmc
Expand Up @@ -15,7 +15,7 @@ src/pmc/phpnull.pmc - PHP Null

*/

#include "php_private.h"
#include "pipp_private.h"

pmclass PhpNull
extends Undef
Expand Down
2 changes: 1 addition & 1 deletion src/pmc/phpstring.pmc
Expand Up @@ -15,7 +15,7 @@ src/pmc/phpstring.pmc - PHP String

*/

#include "php_private.h"
#include "pipp_private.h"

pmclass PhpString
extends String
Expand Down
6 changes: 3 additions & 3 deletions src/pmc/php_private.h → src/pmc/pipp_private.h
Expand Up @@ -2,8 +2,8 @@
* Copyright (C) 2008, The Perl Foundation.
*/

#ifndef PARROT_PHP_PRIVATE_H_GUARD
#define PARROT_PHP_PRIVATE_H_GUARD
#ifndef PARROT_PIPP_PRIVATE_H_GUARD
#define PARROT_PIPP_PRIVATE_H_GUARD

#include "parrot/parrot.h"

Expand All @@ -14,7 +14,7 @@ extern INTVAL dynpmc_PhpInteger;
extern INTVAL dynpmc_PhpString;
extern INTVAL dynpmc_PhpNull;

#endif /* PARROT_PHP_PRIVATE_H_GUARD */
#endif /* PARROT_PIPP_PRIVATE_H_GUARD */

/*
* Local variables:
Expand Down
2 changes: 1 addition & 1 deletion src/pmc/pippresource.pmc
Expand Up @@ -15,7 +15,7 @@ src/pmc/pippresource.pmc - Pipp Resource

*/

#include "php_private.h"
#include "pipp_private.h"

pmclass PippResource
provides ref
Expand Down

0 comments on commit 13f1fb5

Please sign in to comment.