how to limit query_post to first page?

If your question is:

I want this query to limit it self to the first page in wich i have 10 post

I think adding a 'posts_per_page' => 10 array parameter will do the thing for you:

query_posts( array( 'post_type' => 'listings','type' => 'featured','posts_per_page' => 10 ) );

But above all, I’d like to recommend you to use WP_Query() instead, because of a Great cause. And moreover it will give you much ease with a lot of query arguments. And you can use a lot of them even in a single page, and with no danger.