Message Oracle PLS-00360 - cursor declaration without body needs return type

ERRORcursor declaration without body needs return type
CAUSEA cursor declaration lacks either a body (SELECT statement) or a return type. If you want to separate a cursor specification from its body, a return type must be supplied, as in CURSOR c1 RETURN emp%ROWTYPE;
ACTIONAdd a SELECT statement or return type to the cursor declaration.