Following query can be used to find out the structure of a stored procedure without using sp_helptext:
select text from syscomments
where id =(SELECT id from sysobjects where name =<Stored Procedure Name>
Text column in syscomments table will contain the definition for all the database objects in sql server.