With a child theme you do not do anything in the parent folder, all changes and additions are done in the child themes folder.
If you have not done this yet then create a file in your child themes folder called functions.php the file starts with the php tag <?php
Then you need a function in the file that runs after the theme has been setup, with the after_setup_theme action hook
<?php
add_action( 'after_setup_theme', 'child_theme_setup' );
if ( !function_exists( 'child_theme_setup' ) ):
function child_theme_setup() {
define( 'HEADER_IMAGE_HEIGHT', apply_filters( 'twentyten_header_image_height', 120 ) );
}
endif;
That's it done!
Need a practical tutorial using a Twenty Ten Child Theme?
I have written one that starts here:
HTH
David